diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/login.html.ep | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/login.html.ep b/templates/login.html.ep index 1acff00..4e9b1c2 100644 --- a/templates/login.html.ep +++ b/templates/login.html.ep @@ -45,12 +45,12 @@ <div class="row"> <div class="input-field col s12"> <i class="material-icons prefix">account_circle</i> - %= text_field 'user', id => 'user', class => 'validate' + %= text_field 'user', id => 'user', class => 'validate', required => undef, maxlength => 60 <label for="user">Account</label> </div> <div class="input-field col s12"> <i class="material-icons prefix">lock</i> - %= password_field 'password', id => 'password', class => 'validate' + %= password_field 'password', id => 'password', class => 'validate', required => undef <label for="password">Passwort</label> </div> </div> |