fixed form validation

This commit is contained in:
2019-08-20 19:37:43 -05:00
parent 1df56edd2c
commit 840a9979ec

View File

@@ -7,7 +7,7 @@
<p>
{{ form.username.label }}<br>
{{ form.username(size=32) }}
{ for error in form.username.errors %}
{% for error in form.username.errors %}
<span style="color: red;">[{{ error }}]</span>
{% endfor %}
</p>