From bce7add2b4c9e8e0182db1ff6b2dadec2c14ca50 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 15 Dec 2022 16:23:54 -0700 Subject: Fix login form errors not appearing Fixes #175 --- templates/auth/login.html | 3 +++ 1 file changed, 3 insertions(+) (limited to 'templates') diff --git a/templates/auth/login.html b/templates/auth/login.html index 96c0e98..a0588a9 100644 --- a/templates/auth/login.html +++ b/templates/auth/login.html @@ -2,11 +2,14 @@ {% block title %}Login{% endblock %} +{% block body_class %}no-sidebar{% endblock %} + {% block content %}
{% csrf_token %}
Login + {{ form.non_field_errors }} {% for field in form %} {% include "forms/_field.html" %} {% endfor %} -- cgit v1.2.3