|
@@ -1,10 +1,13 @@
|
1
|
1
|
<?php
|
|
2
|
+
|
2
|
3
|
View::show_header('Recover Password');
|
3
|
4
|
?>
|
|
5
|
+
|
4
|
6
|
<script src="<?=(STATIC_SERVER)?>functions/validate.js" type="text/javascript">
|
5
|
7
|
</script>
|
6
|
8
|
<script src="<?=(STATIC_SERVER)?>functions/password_validate.js"
|
7
|
9
|
type="text/javascript"></script>
|
|
10
|
+
|
8
|
11
|
<form class="auth_form" name="recovery" id="recoverform" method="post" action="" onsubmit="return formVal();">
|
9
|
12
|
<input type="hidden" name="key"
|
10
|
13
|
value="<?=display_str($_REQUEST['key'])?>" />
|
|
@@ -23,12 +26,12 @@ if (empty($PassWasReset)) {
|
23
|
26
|
<tr>
|
24
|
27
|
<td><strong id="pass_strength"></strong></td>
|
25
|
28
|
<td><input type="password" name="password" id="new_pass_1" class="inputtext" size="40"
|
26
|
|
- placeholder="New Password" pattern=".{6,307200}" required></td>
|
|
29
|
+ placeholder="New Password" pattern=".{6,307200}" required style="width: 250px !important;"></td>
|
27
|
30
|
</tr>
|
28
|
31
|
<tr>
|
29
|
32
|
<td><strong id="pass_match"></strong></td>
|
30
|
33
|
<td><input type="password" name="verifypassword" id="new_pass_2" class="inputtext" size="40"
|
31
|
|
- placeholder="Confirm Password" pattern=".{6,307200}" required></td>
|
|
34
|
+ placeholder="Confirm Password" pattern=".{6,307200}" required style="width: 250px !important;"></td>
|
32
|
35
|
</tr>
|
33
|
36
|
<tr>
|
34
|
37
|
<td></td>
|
|
@@ -42,5 +45,6 @@ if (empty($PassWasReset)) {
|
42
|
45
|
<?php } ?>
|
43
|
46
|
</div>
|
44
|
47
|
</form>
|
|
48
|
+
|
45
|
49
|
<?php
|
46
|
50
|
View::show_footer(['recover' => true]);
|