-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.html
More file actions
30 lines (22 loc) · 943 Bytes
/
signup.html
File metadata and controls
30 lines (22 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<div class="container">
<div class="col-sm-6 col-sm-offset-3">
<h1><span class="fa fa-sign-in"></span> Signup</h1>
<form novalidate ng-submit="submit()">
<div class="form-group">
<label>First Name</label>
<input type="text" class="form-control" name="firstName" ng-model="firstName">
</div>
<div class="form-group">
<label>Email</label>
<input type="text" class="form-control" name="email" ng-model="email">
</div>
<div class="form-group">
<label>Password</label>
<input type="password" class="form-control" name="password" ng-model="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>
</div>
</div>