From 6adfdbabe0d44c17f32abc9d48a6e252e2a0792e Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 17 Nov 2022 19:16:34 -0700 Subject: Add signup and password reset --- templates/auth/signup.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 templates/auth/signup.html (limited to 'templates/auth/signup.html') diff --git a/templates/auth/signup.html b/templates/auth/signup.html new file mode 100644 index 0000000..d519476 --- /dev/null +++ b/templates/auth/signup.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} + +{% block title %}Create Account{% endblock %} + +{% block content %} +
+ {% csrf_token %} +
+ Create An Account + {% for field in form %} + {% include "forms/_field.html" %} + {% endfor %} +
+
+ +
+
+{% endblock %} -- cgit v1.2.3