Last active
January 27, 2016 00:21
-
-
Save miyamotodev123/727a5a125e5e5ec86173 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> Signup</h1> | |
<!-- SIGNUP FORM --> | |
<form ng-submit="signup.signup()" ng-controller="SignupController as signup"> | |
<div class="form-group"> | |
<label>Email</label> | |
<input type="text" class="form-control" ng-model="signup.email"> | |
</div> | |
<div class="form-group"> | |
<label>Password</label> | |
<input type="password" class="form-control" ng-model="signup.password"> | |
</div> | |
<button type="submit" class="btn btn-warning btn-lg">Signup</button> | |
</form> | |
<hr> | |
<p>Already have an account? <a href="/login">Login</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