|
@@ -1,6 +1,5 @@
|
1
|
1
|
<?
|
2
|
2
|
View::show_header('Recover Password');
|
3
|
|
-echo $Validate->GenerateJS('recoverform');
|
4
|
3
|
?>
|
5
|
4
|
<script src="<?=(STATIC_SERVER)?>functions/validate.js" type="text/javascript"></script>
|
6
|
5
|
<script src="<?=(STATIC_SERVER)?>functions/password_validate.js" type="text/javascript"></script>
|
|
@@ -14,17 +13,18 @@ if (empty($PassWasReset)) {
|
14
|
13
|
?>
|
15
|
14
|
<strong class="important_text"><?=display_str($Err)?></strong><br /><br />
|
16
|
15
|
<? } ?> Any password 6 characters or longer is accepted, but a strong password is 8 characters or longer, contains at least 1 lowercase and uppercase letter, and contains at least a number or symbol.<br /><br />
|
17
|
|
- <table class="layout" cellpadding="2" cellspacing="1" border="0" align="center" width="100%">
|
18
|
|
- <tr valign="top">
|
19
|
|
- <td align="right" style="width: 100px;">Password </td>
|
20
|
|
- <td align="left"><input type="password" name="password" id="new_pass_1" class="inputtext" /> <strong id="pass_strength"></strong></td>
|
|
16
|
+ <table class="layout">
|
|
17
|
+ <tr>
|
|
18
|
+ <td><strong id="pass_strength"></strong></td>
|
|
19
|
+ <td><input type="password" name="password" id="new_pass_1" class="inputtext" size="40" placeholder="New password" pattern=".{6,307200}" required></td>
|
21
|
20
|
</tr>
|
22
|
|
- <tr valign="top">
|
23
|
|
- <td align="right">Confirm Password </td>
|
24
|
|
- <td align="left"><input type="password" name="verifypassword" id="new_pass_2" class="inputtext" /> <strong id="pass_match"></strong></td>
|
|
21
|
+ <tr>
|
|
22
|
+ <td><strong id="pass_match"></strong></td>
|
|
23
|
+ <td><input type="password" name="verifypassword" id="new_pass_2" class="inputtext" size="40" placeholder="Confirm password" pattern=".{6,307200}" required></td>
|
25
|
24
|
</tr>
|
26
|
25
|
<tr>
|
27
|
|
- <td colspan="2" align="right"><input type="submit" name="reset" value="Reset!" class="submit" /></td>
|
|
26
|
+ <td></td>
|
|
27
|
+ <td><input type="submit" name="reset" value="Reset!" class="submit"></td>
|
28
|
28
|
</tr>
|
29
|
29
|
</table>
|
30
|
30
|
<? } else { ?>
|