summaryrefslogtreecommitdiffstats
path: root/templates/registration/registration_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/registration/registration_form.html')
-rw-r--r--templates/registration/registration_form.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/registration/registration_form.html b/templates/registration/registration_form.html
index 17bebf2..5720a8b 100644
--- a/templates/registration/registration_form.html
+++ b/templates/registration/registration_form.html
@@ -10,6 +10,9 @@ registration_form.html | {{ block.super }}
{% block content %}
<form action="{% url registration_register %}" method="POST">
+ {% for error in form.non_field_errors %}
+ <span style="color:red">{{ error }}</span>
+ {% endfor %}
<table>
<tr>
<td align="right" valign="top">Username:</td>
@@ -53,4 +56,4 @@ registration_form.html | {{ block.super }}
</tr>
</table>
</form>
-{% endblock %} \ No newline at end of file
+{% endblock %}