From 333fe8497dee7cdad47e1182a74878ee350c788a Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Wed, 17 Jan 2024 22:20:30 +0100 Subject: [PATCH] [FIX] Register template to Bootstrap 5 --- .../templates/public/register.html | 24 +++++++++++-------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/allianceauth/authentication/templates/public/register.html b/allianceauth/authentication/templates/public/register.html index a4f1e77d..062bcb1e 100644 --- a/allianceauth/authentication/templates/public/register.html +++ b/allianceauth/authentication/templates/public/register.html @@ -1,6 +1,6 @@ {% extends 'public/base.html' %} -{% load bootstrap %} +{% load django_bootstrap5 %} {% load i18n %} {% block page_title %}{% translate "Registration" %}{% endblock %} @@ -12,16 +12,20 @@ {% endblock %} {% block content %} -
-
-
-
- {% csrf_token %} - {{ form|bootstrap }} - -
+
+
+
- {% include 'public/lang_select.html' %}
{% endblock %}