mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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:
parent
e9a0272118
commit
24a8452880
4 changed files with 5 additions and 6 deletions
|
@ -32,7 +32,7 @@ html_header('AUR ' . __("Login"));
|
|||
</p>
|
||||
<p>
|
||||
<label for="id_password"><?= __('Password') . ':'; ?></label>
|
||||
<input id="id_password" type="password" name="passwd" size="30" maxlength="<?= PASSWD_MAX_LEN; ?>" />
|
||||
<input id="id_password" type="password" name="passwd" size="30" />
|
||||
</p>
|
||||
<p>
|
||||
<input type="checkbox" name="remember_me" id="id_remember_me" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue