aboutsummaryrefslogtreecommitdiff
path: root/app/views/auth/formLogin.phtml
diff options
context:
space:
mode:
authorGravatar Clément <clement@selfhost.fr> 2017-02-16 18:55:19 +0100
committerGravatar Clément <clement@selfhost.fr> 2017-02-16 18:55:19 +0100
commitef2001959188f721a0928fb3ff59ebd6a5a31b1a (patch)
tree135e1b8010e129d04ec3a663cc8864c3b8efb898 /app/views/auth/formLogin.phtml
parent4eeae5171b885b6dda392f5dd68d6dd78a0c7858 (diff)
delete - and . from accepted char
Diffstat (limited to 'app/views/auth/formLogin.phtml')
-rw-r--r--app/views/auth/formLogin.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth/formLogin.phtml b/app/views/auth/formLogin.phtml
index 6cfe6764a..24cb14c6e 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="[0-9a-zA-Z.\-_]{1,16}" autofocus="autofocus" />
+ <input type="text" id="username" name="username" size="16" required="required" maxlength="16" pattern="[0-9a-zA-Z_]{1,16}" autofocus="autofocus" />
</div>
<div>
<label for="passwordPlain"><?php echo _t('gen.auth.password'); ?></label>