Fix maxlength for email input

This commit is contained in:
slawkens
2024-02-02 18:52:21 +01:00
parent f7971a21d8
commit cc9057324a
3 changed files with 3 additions and 3 deletions

View File

@@ -38,7 +38,7 @@
<td class="LabelV">
<span{% if error is not null %} class="red"{% endif %}>{{ account_login_by }}:</span>
</td>
<td><input type="text" name="account_login" size="35" maxlength="30" autofocus /></td>
<td><input type="text" name="account_login" size="35" maxlength="{{ setting('core.account_login_by_email') ? '255' : '30' }}" autofocus /></td>
</tr>
{{ hook('HOOK_ACCOUNT_LOGIN_AFTER_ACCOUNT') }}
<tr>