From 8b8b21b006ecd7dd64e9d9e91fa99c96be0c6858 Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 13 Feb 2023 11:04:38 +0000 Subject: [PATCH] switch login form to crispy --- templates/registration/login.html | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/templates/registration/login.html b/templates/registration/login.html index a47c071d..189ba456 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -1,4 +1,5 @@ {% extends '../base.html' %} +{% load crispy_forms_tags %} {% block title %}Login{% endblock %} @@ -6,7 +7,7 @@

Login

{% csrf_token %} - {{ form.as_p }} + {{ form | crispy }}
@@ -16,3 +17,12 @@

This page is for user account logins. If you have a CID / Passcode click here {% endblock %} + + +{% block css %} + +{% endblock css %}