summaryrefslogtreecommitdiffstats
path: root/templates/auth/signup.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/auth/signup.html')
-rw-r--r--templates/auth/signup.html18
1 files changed, 18 insertions, 0 deletions
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 %}
+ <form action="." method="POST">
+ {% csrf_token %}
+ <fieldset>
+ <legend>Create An Account</legend>
+ {% for field in form %}
+ {% include "forms/_field.html" %}
+ {% endfor %}
+ </fieldset>
+ <div class="buttons">
+ <button>Create</button>
+ </div>
+ </form>
+{% endblock %}