Fix some bugs

This commit is contained in:
Patrick Jentsch
2020-02-19 16:36:55 +01:00
parent 75329382ab
commit 48685e4da6
6 changed files with 15 additions and 18 deletions

View File

@ -100,9 +100,9 @@
{{ login_form.hidden_tag() }}
<div class="input-field">
<i class="material-icons prefix">person</i>
{{ login_form.user(class='validate') }}
{{ login_form.user.label }}
{% for error in login_form.user.errors %}
{{ login_form.email(class='validate') }}
{{ login_form.email.label }}
{% for error in login_form.email.errors %}
<span class="helper-text red-text">{{ error }}</span>
{% endfor %}
</div>