From f28781dd1dd718f45bf1cef82d1ce6eb4792b4ca Mon Sep 17 00:00:00 2001 From: Tom van der Lee Date: Wed, 22 Jul 2026 17:37:10 +0200 Subject: Added management interface --- authentication/templates/base.html | 65 ++-------------------------------- authentication/templates/register.html | 24 +++++++++++++ 2 files changed, 27 insertions(+), 62 deletions(-) create mode 100644 authentication/templates/register.html (limited to 'authentication/templates') diff --git a/authentication/templates/base.html b/authentication/templates/base.html index 47d007e..9874313 100644 --- a/authentication/templates/base.html +++ b/authentication/templates/base.html @@ -1,63 +1,4 @@ - - - - - TTUN - - - -
- -
+{% extends 'global.html' %} +{% block template %} {% block content %}{% endblock %} - - +{% endblock %} diff --git a/authentication/templates/register.html b/authentication/templates/register.html new file mode 100644 index 0000000..576db78 --- /dev/null +++ b/authentication/templates/register.html @@ -0,0 +1,24 @@ +{% extends "./base.html" %} + +{% block content %} +
+ + + {% if errors and errors.email%} + {{ errors.email }} + {% endif %} + + + + {% if errors and errors.password%} + {{ errors.password }} + {% endif %} + + + {% if errors and errors.password%} + {{ errors.verify_password }} + {% endif %} + + +
+{% endblock %} -- cgit v1.2.3