diff options
author | 2010-07-05 01:18:36 -0500 | |
---|---|---|
committer | 2010-07-05 01:18:36 -0500 | |
commit | e598bc84cff9a281d312651332465c3899e3f49d (patch) | |
tree | 7112c90678b99aafdebe59ddc4b394a8412f220d | |
parent | Bug 574327 - Map image/x-png to image/png (to fix IE's uploads) (diff) | |
download | bugzilla-e598bc84cff9a281d312651332465c3899e3f49d.tar.gz bugzilla-e598bc84cff9a281d312651332465c3899e3f49d.tar.bz2 bugzilla-e598bc84cff9a281d312651332465c3899e3f49d.zip |
Bug 575340 - Remove incorrect maxlength and unneeded size parameters from the new password input field on the reset password page.
[r=mkanat a=mkanat]
-rw-r--r-- | template/en/default/account/password/set-forgotten-password.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/account/password/set-forgotten-password.html.tmpl b/template/en/default/account/password/set-forgotten-password.html.tmpl index 7035868b6..ca134a486 100644 --- a/template/en/default/account/password/set-forgotten-password.html.tmpl +++ b/template/en/default/account/password/set-forgotten-password.html.tmpl @@ -32,14 +32,14 @@ <tr> <th align="right">New Password:</th> <td> - <input type="password" name="password" size="16" maxlength="16"> + <input type="password" name="password"> </td> </tr> <tr> <th align="right">New Password Again:</th> <td> - <input type="password" name="matchpassword" size="16" maxlength="16"> + <input type="password" name="matchpassword"> </td> </tr> |