forked from SouICry/fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_passwordReset.html
More file actions
38 lines (34 loc) · 1.28 KB
/
_passwordReset.html
File metadata and controls
38 lines (34 loc) · 1.28 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
36
37
38
<div class="container box" id="passwordReset">
<div class="row">
<div class="col-xs-12">
<h3> Password Reset</h3>
<!--<form>-->
<div class="input-field">
<label for="pass1">Enter New Password</label>
<input type="password" class="form-control" name="pass1" id="pass1">
</div>
<!--</form>-->
</div>
</div>
<div class="row">
<div class="col-xs-12">
<!--<form>-->
<div class="input-field">
<label for="pass2">Re-enter Password</label>
<!--<input type="password" class="form-control" id="pass2" placeholder="Re-enter password">-->
<input type="password" class="form-control" name="pass2" id="pass2"
onkeyup="checkPass(); return false;">
<span id="confirmMessage" class="confirmMessage"></span>
</div>
<!--</form>-->
</div>
</div>
<div class="row text-center">
<a type="submit" class="btn waves-effect orange" id="submitPass">submit</a>
</div>
</div>
<div class="footerBars container">
<div class="footer2"></div>
<div class="footer3"></div>
</div>
<script type="text/javascript" src="js/_passwordReset.js"></script>