Increased password-reset form username size to 100

Increased the accepted max-length to 100 as requested:  https://github.com/TheSerapher/php-mpos/pull/1279#issuecomment-31732351
This commit is contained in:
Hüseyin Uslu 2014-01-07 14:11:26 +02:00
parent 748e4796c1
commit b69991e129

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>
<fieldset>
<label>Username or E-Mail</label>
<input type="text" name="username" value="{$smarty.post.username|escape|default:""}" size="22" maxlength="50" required>
<input type="text" name="username" value="{$smarty.post.username|escape|default:""}" size="22" maxlength="100" required>
</fieldset>
<div class="clear"></div>
</div>