diff options
author | Reed Loden <reed@reedloden.com> | 2010-07-05 08:18:36 +0200 |
---|---|---|
committer | Reed Loden <reed@reedloden.com> | 2010-07-05 08:18:36 +0200 |
commit | e598bc84cff9a281d312651332465c3899e3f49d (patch) | |
tree | 7112c90678b99aafdebe59ddc4b394a8412f220d /template/en/default/account | |
parent | e69d9ce1a782722720de7a47ce7f36554181a382 (diff) | |
download | bugzilla-e598bc84cff9a281d312651332465c3899e3f49d.tar.gz bugzilla-e598bc84cff9a281d312651332465c3899e3f49d.tar.xz |
Bug 575340 - Remove incorrect maxlength and unneeded size parameters from the new password input field on the reset password page.
[r=mkanat a=mkanat]
Diffstat (limited to 'template/en/default/account')
-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> |