diff options
| author | 2017-02-25 12:56:57 +0100 | |
|---|---|---|
| committer | 2017-02-25 12:56:57 +0100 | |
| commit | be2bf83e3c516a6f8f1822c879df8798e50e514b (patch) | |
| tree | f9d3ed9a5cde70a1420bed44543bd5ec56096195 /app/views/auth/formLogin.phtml | |
| parent | 271a1fdc8900a8b2c32675c22dce1cc458209de4 (diff) | |
Remove maxlength for usernames
pattern is already used
Diffstat (limited to 'app/views/auth/formLogin.phtml')
| -rw-r--r-- | app/views/auth/formLogin.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth/formLogin.phtml b/app/views/auth/formLogin.phtml index 2f881dde7..99be6059c 100644 --- a/app/views/auth/formLogin.phtml +++ b/app/views/auth/formLogin.phtml @@ -9,7 +9,7 @@ <input type="hidden" name="_csrf" value="<?php echo FreshRSS_Auth::csrfToken(); ?>" /> <div> <label for="username"><?php echo _t('gen.auth.username'); ?></label> - <input type="text" id="username" name="username" size="16" required="required" maxlength="16" pattern="<?php echo FreshRSS_user_Controller::USERNAME_PATTERN; ?>" autofocus="autofocus" /> + <input type="text" id="username" name="username" size="16" required="required" pattern="<?php echo FreshRSS_user_Controller::USERNAME_PATTERN; ?>" autofocus="autofocus" /> </div> <div> <label for="passwordPlain"><?php echo _t('gen.auth.password'); ?></label> |
