-
Notifications
You must be signed in to change notification settings - Fork 3
/
creds.html
38 lines (33 loc) · 991 Bytes
/
creds.html
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
31
32
33
34
35
36
37
38
<!-- CREDENTIALS FORM -->
<form class="form-signin">
<h2 class="form-signin-heading">Please sign in</h2>
<div class="form-group">
<label for="inputEmail">Email address</label>
<input id="inputEmail"
type="email"
class="form-control"
placeholder="Email address"
ng-model="user.email"
autofocus>
</div>
<div class="form-group" ng-class="{'has-error': badPassword}">
<label for="inputPassword" class="control-label">Password</label>
<input id="inputPassword"
type="password"
class="form-control"
placeholder="Password"
ng-model="user.password">
</div>
<div class="checkbox">
<label>
<input type="checkbox" value="remember-me">
Remember me
</label>
</div>
<button type="submit"
class="btn btn-lg btn-primary btn-block"
ng-click="submit()">
Sign in
</button>
<a href="#/forgot">Forgot your password?</a>
</form>