forked from mrvautin/expressCart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset.hbs
15 lines (15 loc) · 860 Bytes
/
reset.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="col-md-offset-4 col-md-4 col-lg-offset-4 col-lg-4">
<form class="form-signin" action="/{{route}}/reset/{{token}}" method="post" role="form" data-toggle="validator">
<h2 class="form-signin-heading">Password reset</h2>
<div class="form-group">
<label for="user_password">Password *</label>
<input type="password" class="form-control" id="user_password" name="password" placeholder="Password" required>
</div>
<div class="form-group">
<label for="frm_user_password_confirm">Confirm password *</label>
<input type="password" data-match="#user_password" placeholder="Confirm password" class="form-control" name="frm_user_password_confirm" required>
</div>
<button class="btn btn-lg btn-success btn-block" type="submit">Update password</button>
</br>
</form>
</div>