From 66c7485028ef17557d1bd98dd8fd21bc21f87007 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20G=C3=B6tz?= Date: Wed, 10 Apr 2019 23:54:11 +0200 Subject: [PATCH] Fix #29 --- templates/registration/login.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/templates/registration/login.html b/templates/registration/login.html index 4651248..954c763 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -6,6 +6,11 @@

Login

+ {% if form.non_field_errors %} + {% for error in form.non_field_errors() %} +
{{ error }}
+ {% endfor %} + {% endif %}
{{ mform.text_input(form.username) }}