Updated max lenght of username field in password-reset form
As the password reset form can also accept emails, increased the max-length size to 50 - so that we can accept long emails too.
This commit is contained in:
parent
a687e759c4
commit
748e4796c1
@ -7,7 +7,7 @@
|
||||
<p>If you have an email set for your account, enter your username to get your password reset</p>
|
||||
<fieldset>
|
||||
<label>Username or E-Mail</label>
|
||||
<input type="text" name="username" value="{$smarty.post.username|escape|default:""}" size="22" maxlength="20" required>
|
||||
<input type="text" name="username" value="{$smarty.post.username|escape|default:""}" size="22" maxlength="50" required>
|
||||
</fieldset>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user