Last active
January 27, 2016 00:06
-
-
Save miyamotodev123/7d8096bcea641a63bd09 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="col-sm-6 col-sm-offset-3"> | |
<h1><span class="fa fa-sign-in"></span> Login</h1> | |
<!-- LOGIN FORM --> | |
<form ng-submit="login.login()" ng-controller="LoginControllerTwo as login"> | |
<div class="form-group"> | |
<label>Email</label> | |
<input type="text" class="form-control" ng-model="login.email"> | |
</div> | |
<div class="form-group"> | |
<label>Password</label> | |
<input type="password" class="form-control" ng-model="login.password"> | |
</div> | |
<button type="submit" class="btn btn-warning btn-lg">Login</button> | |
</form> | |
<hr> | |
<p>Need an account? <a href="/signup">Signup</a></p> | |
<p>Or go <a href="/">home</a>.</p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment