Change colors for error messages in forms.

This commit is contained in:
Patrick Jentsch
2019-07-12 17:22:15 +02:00
parent 9096cc4028
commit 6d1be8f391
5 changed files with 23 additions and 31 deletions

View File

@ -15,7 +15,7 @@
{{ form.email(class='validate', type='email') }}
{{ form.email.label }}
{% for error in form.email.errors %}
<span class="helper-text" style="color:red;">{{ error }}</span>
<span class="helper-text red-text">{{ error }}</span>
{% endfor %}
</div>
</div>