We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11a1fb1 commit 71cd48cCopy full SHA for 71cd48c
Algolyzer/templates/account/login.html
@@ -22,6 +22,14 @@ <h1 class="text-2xl font-bold text-center text-primary">
22
23
<form method="post" action="{% url 'account_login' %}" class="mt-6 space-y-4">
24
{% csrf_token %}
25
+ {% if form.non_field_errors %}
26
+ <div class="text-error text-sm text-center">
27
+ {% for error in form.non_field_errors %}
28
+ {{ error }}
29
+ {% endfor %}
30
+ </div>
31
+ {% endif %}
32
+
33
34
{% for field in form %}
35
{% if field.label == 'Remember Me' %}
0 commit comments