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:
Hüseyin Uslu 2014-01-07 14:04:21 +02:00
parent a687e759c4
commit 748e4796c1

View File

@ -7,7 +7,7 @@
<p>If you have an email set for your account, enter your username to get your password reset</p> <p>If you have an email set for your account, enter your username to get your password reset</p>
<fieldset> <fieldset>
<label>Username or E-Mail</label> <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> </fieldset>
<div class="clear"></div> <div class="clear"></div>
</div> </div>