Remove character limit on password length

As all new passwords are hashed and therefore stored in the database
at the same length, this limitation is no longer needed.

Fixes FS#31855

Signed-off-by: canyonknight <canyonknight@gmail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
canyonknight 2012-10-09 16:37:18 -04:00 committed by Lukas Fleischer
parent e9a0272118
commit 24a8452880
4 changed files with 5 additions and 6 deletions

View file

@ -86,11 +86,11 @@ html_header(__("Password Reset"));
</tr>
<tr>
<td><?= __("Enter your new password:"); ?></td>
<td><input type="password" name="password" size="30" maxlength="32" /></td>
<td><input type="password" name="password" size="30" /></td>
</tr>
<tr>
<td><?= __("Confirm your new password:"); ?></td>
<td><input type="password" name="confirm" size="30" maxlength="32" /></td>
<td><input type="password" name="confirm" size="30" /></td>
</tr>
</table>
<br />