diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-03-09 08:27:31 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-03-09 08:30:18 +0100 |
commit | 844a95f77f7bfca74264ae6dc062094bc8622f6a (patch) | |
tree | b9d13bd1cb7558997b6a4a8024e3639e3be202c3 /templates/register.html.ep | |
parent | 7206292163b122ef61946e748e71be5949723881 (diff) |
registration form: note that user name must be alphanumeric
Diffstat (limited to 'templates/register.html.ep')
-rw-r--r-- | templates/register.html.ep | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/register.html.ep b/templates/register.html.ep index 44a7615..1cf5055 100644 --- a/templates/register.html.ep +++ b/templates/register.html.ep @@ -65,7 +65,7 @@ <div class="input-field col l6 m12 s12"> <i class="material-icons prefix">account_circle</i> %= text_field 'user', id => 'account', class => 'validate', required => undef, pattern => '[0-9a-zA-Z_-]+', maxlength => 60, autocomplete => 'username' - <label for="account">Name</label> + <label for="account">Name (alphanumerisch)</label> </div> <div class="input-field col l6 m12 s12"> <i class="material-icons prefix">email</i> |