Skip to content

Commit

Permalink
styled buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
jmccutchanwd committed Feb 16, 2017
1 parent 48b310e commit 677c8a8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions partials/login.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
<div>
<h2>Login</h2>
<label for="">Name:</label><br>
<input type="text" ng-model="name" size="30"><br>
<label for="">Email:</label><br>
<input type="email" ng-model="email" size="30"><br>
<input type="email" ng-model="loginCtrl.user.email" size="30"><br>
<label for="">Password:</label><br>
<input type="text" ng-model="password" size="30"><br><br>
<a class="btn btn-success" ng-click="login()">Submit</a>
<input type="text" ng-model="loginCtrl.user.password" size="30"><br><br>
<a class="btn btn-primary" ng-click="loginCtrl.login()">Login</a>
<a class="btn btn-danger" ui-sref="start">Cancel</a>
</div>
</div>

0 comments on commit 677c8a8

Please sign in to comment.