From b72023b5d50044a259753e228131a5ebbab537d2 Mon Sep 17 00:00:00 2001 From: Serghei Mihai Date: Tue, 23 Oct 2018 17:06:03 +0200 Subject: [PATCH] templates: display properly login form fields (#27501) --- templates/authentic2/login_password_form.html | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/templates/authentic2/login_password_form.html b/templates/authentic2/login_password_form.html index 81c273c..2a8b952 100644 --- a/templates/authentic2/login_password_form.html +++ b/templates/authentic2/login_password_form.html @@ -2,17 +2,20 @@ {% block content %}
+{{ form.non_field_errors }} {% csrf_token %}

- - + {{ form.username.errors }} + {{ form.username.label_tag }} + {{ form.username }}

- - + {{ form.password.errors }} + {{ form.password.label_tag }} + {{ form.password }}

- + {{ form.remember_me }}