aboutsummaryrefslogtreecommitdiff
path: root/templates/accounts/create.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/accounts/create.html')
-rw-r--r--templates/accounts/create.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/accounts/create.html b/templates/accounts/create.html
new file mode 100644
index 0000000..130f180
--- /dev/null
+++ b/templates/accounts/create.html
@@ -0,0 +1,11 @@
1{% extends "base.html" %}
2
3{% block content %}
4<h1>Register an Account</h1>
5
6<form method="post" action="{% url 'account:create' %}">
7 {% csrf_token %}
8 {{ form.as_p }}
9 <input type="submit" value="Register" />
10</form>
11{% endblock %}