Skip to content

Commit

Permalink
Added styling to Login partial
Browse files Browse the repository at this point in the history
  • Loading branch information
JunYam committed Mar 16, 2014
1 parent a993518 commit 206e5d9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/main/webapp/Partials/login.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<content>
<div ng-controller="LoginController">
<input type="text" class="form-control" ng-model="username" />
<input type="text" class="form-control" ng-model="password" /><br />
<input type="submit" class="btn btn-primary" ng-click="login()" value="Submit" />
<h1>Project Management System</h1>
<label for="userName">User Name:</label>
<input type="text" class="form-control" ng-model="username" id = "userName" placeholder="Enter user name" required />
<label for="userName">Password:</label>
<input type="text" class="form-control" ng-model="password" id = "password" placeholder="Password" required /><br />
<input type="submit" class="btn btn-primary" ng-click="login()" value="Login" />
</div>
</content>

0 comments on commit 206e5d9

Please sign in to comment.