summaryrefslogtreecommitdiff
path: root/web/template
diff options
context:
space:
mode:
authorcanyonknight <canyonknight@gmail.com>2012-10-09 16:37:18 -0400
committerLukas Fleischer <archlinux@cryptocrack.de>2012-10-11 21:19:16 +0200
commit24a8452880476201ab231b86f6a9cde1e74e107c (patch)
tree6494253ed1d439205e8074bd4f0ed7c9dbb7e3e3 /web/template
parente9a02721181cf0633d1148b07e004f448df96078 (diff)
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>
Diffstat (limited to 'web/template')
-rw-r--r--web/template/account_edit_form.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/template/account_edit_form.php b/web/template/account_edit_form.php
index 20f552a..308913d 100644
--- a/web/template/account_edit_form.php
+++ b/web/template/account_edit_form.php
@@ -60,13 +60,13 @@
<p>
<label for="id_passwd1"><?= __("Password") ?>:</label>
- <input type="password" size="30" maxlength="32" name="P" id="id_passwd1" value="<?= $P ?>" />
+ <input type="password" size="30" name="P" id="id_passwd1" value="<?= $P ?>" />
<?php if ($A != "UpdateAccount"): print " (".__("required").")"; endif; ?>
</p>
<p>
<label for="id_passwd2"><?= __("Re-type password") ?>:</label>
- <input type="password" size="30" maxlength="32" name="C" id="id_passwd2" value="<?= $C ?>" />
+ <input type="password" size="30" name="C" id="id_passwd2" value="<?= $C ?>" />
<?php if ($A != "UpdateAccount"): print " (".__("required").")"; endif; ?>
</p>