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/register.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 authentication/templates/register.html (limited to 'authentication/templates/register.html') 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