Commit 8042dfb3 authored by Artem Anisimov's avatar Artem Anisimov Committed by Frédéric Buclin

Bug 595664: Maximum password length is hardcoded in the UI when editing user accounts

r/a=LpSolit
parent 1906ffa9
...@@ -83,8 +83,7 @@ ...@@ -83,8 +83,7 @@
password</label>: password</label>:
<input type="hidden" name="Bugzilla_login" value=" <input type="hidden" name="Bugzilla_login" value="
[%- user.login FILTER html %]"> [%- user.login FILTER html %]">
<input type="password" id="Bugzilla_password" name="Bugzilla_password" <input type="password" id="Bugzilla_password" name="Bugzilla_password" size="20">
maxlength="20" size="20">
<br> <br>
This is done for two reasons. First of all, it is done to reduce This is done for two reasons. First of all, it is done to reduce
the chances of someone doing large amounts of damage using your the chances of someone doing large amounts of damage using your
......
...@@ -61,9 +61,8 @@ ...@@ -61,9 +61,8 @@
<tr> <tr>
<th><label for="password">Password:</label></th> <th><label for="password">Password:</label></th>
<td> <td>
<input type="password" size="16" maxlength="16" name="password" <input type="password" size="16" name="password" id="password"
autocomplete="off" value="" autocomplete="off" />
id="password" value="" />
[% IF editform %]<br /> [% IF editform %]<br />
(Enter new password to change.) (Enter new password to change.)
[% END %] [% END %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment