From 69d5a098f830128414f178d9382c65221f06e4bb Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Fri, 10 Nov 2017 15:25:29 -0500 Subject: Initial version of registration system--needs work --- .../templates/registration/registration_form.html | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 app/dispatch/templates/registration/registration_form.html (limited to 'app/dispatch/templates/registration/registration_form.html') diff --git a/app/dispatch/templates/registration/registration_form.html b/app/dispatch/templates/registration/registration_form.html new file mode 100644 index 0000000..eda9294 --- /dev/null +++ b/app/dispatch/templates/registration/registration_form.html @@ -0,0 +1,23 @@ +{% extends 'dispatch/base.html' %} + +{% block title %}Register{% endblock %} + +{% block content %} +
+
+

Send a registration request with the following form

+
+
+ +
{% csrf_token %} + {% for field in form %} +

+ {{field.label_tag}} {{field}} +

+ {% endfor %} +
+ +
+
+ +{% endblock %} -- cgit v1.2.3