This repository was archived by the owner on Dec 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathspPasswordResetForm.tpl.html
More file actions
35 lines (34 loc) · 1.64 KB
/
spPasswordResetForm.tpl.html
File metadata and controls
35 lines (34 loc) · 1.64 KB
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
<div class="row">
<div class="col-sm-offset-4 col-xs-12 col-sm-4">
<p ng-show="verifying" class="alert alert-warning text-center">We are verifying this link</p>
<p class="alert alert-success" ng-show="reset">Your new password has been set. Please <a href="/login">Login Now</a>.</p>
<div ng-show="showVerificationError" class="alert alert-danger">
This password reset link is not valid. You may request another
link by <a href="/forgot">clicking here</a>.
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<form sp-auto-focus-form class="form-horizontal" ng-show="verified && !reset" ng-submit="submit()">
<div class="form-group">
<label for="spEmail" class="col-xs-12 col-sm-4 control-label">New Password</label>
<div class="col-xs-12 col-sm-4">
<input class="form-control" id="spUsername" ng-model="formModel.password" placeholder="New Password" type="password" ng-disabled="posting">
</div>
</div>
<div class="form-group">
<label for="spEmail" class="col-xs-12 col-sm-4 control-label">Confirm New Password</label>
<div class="col-xs-12 col-sm-4">
<input class="form-control" id="spUsername" ng-model="formModel.confirmPassword" placeholder="Confirm New Password" type="password" ng-disabled="posting">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-4 col-sm-4">
<p class="alert alert-danger" ng-show="error" ng-bind="error"></p>
<button type="submit" class="btn btn-primary" ng-disabled="posting">Set New Password</button>
</div>
</div>
</form>
</div>
</div>