Skip to content
Snippets Groups Projects
Commit f21472c3 authored by rswindell's avatar rswindell
Browse files

Allow the user to type up to 16 chars for the "password verification" field.

This catches the user that tries to use a 9+ char password and doesn't notice
that only 8 are allowed in the password field. Perhaps an error message stating
that the lengths don't match, or the verified-password is too long would help.
parent 573642da
Branches
Tags
No related merge requests found
......@@ -17,7 +17,7 @@
</tr>
<tr>
<td>New Password: </td><td><input type="password" name="newpass1" size="8" maxlength="8" value="" />
Retype New Password: <input type="password" name="newpass2" size="8" maxlength="8" value="" /></td>
Retype New Password: <input type="password" name="newpass2" size="8" maxlength="16" value="" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="Change Password" /></td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment