don't restrict the maxlength of the password

git-svn-id: http://piwigo.org/svn/trunk@29194 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
flop25 2014-08-10 15:55:34 +00:00
commit b673b2b284

View file

@ -171,11 +171,11 @@ input[type="text"]:focus, input[type="password"]:focus, select:focus {
<table>
<tr>
<td>{'Username'|@translate}</td>
<td><input type="text" name="username" id="username" size="25" maxlength="40" style="width: 150px;"></td>
<td><input type="text" name="username" id="username" size="20" maxlength="50" style="width: 150px;"></td>
</tr>
<tr>
<td>{'Password'|@translate}</td>
<td><input type="password" name="password" id="password" size="25" maxlength="25" style="width: 150px;"></td>
<td><input type="password" name="password" id="password" style="width: 150px;"></td>
</tr>
</table>
{/if}