put error text in red

This commit is contained in:
Son NK 2019-07-06 20:35:28 +02:00
parent 414ef2bb9b
commit f838f43e34
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
{% if field.errors %}
<ul class=errors>
{% for error in field.errors %}
<li>{{ error }}</li>
<li class="text-danger">{{ error }}</li>
{% endfor %}
</ul>
{% endif %}