From c2b15c217557fb199ee8ea2a524f6b599ed4b2ec Mon Sep 17 00:00:00 2001 From: moanos Date: Wed, 18 Jun 2025 07:12:29 +0200 Subject: [PATCH] fix: Make actual form --- src/templates/django_registration/registration_form.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/templates/django_registration/registration_form.html b/src/templates/django_registration/registration_form.html index 729aece..652817e 100644 --- a/src/templates/django_registration/registration_form.html +++ b/src/templates/django_registration/registration_form.html @@ -1,11 +1,13 @@ {% extends "fellchensammlung/base_bulma.html" %} {% load i18n %} -{% load crispy_forms_tags %} {% block content %} {% if not user.is_authenticated %} - {{ form }} - +
+ {% csrf_token %} + {{ form }} + +
{% else %}

{% translate "Du bist bereits eingeloggt." %}

{% endif %}