summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/register.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/register.html b/templates/register.html
new file mode 100644
index 0000000..1e96907
--- /dev/null
+++ b/templates/register.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+
+<form action="" method="post" class="login mm_clear">
+ {% csrf_token %}
+ {{ form.as_p }}
+ <input type=hidden name=next value={{ next }}>
+ <div class="field">
+ <button class="btn btn-primary" type="submit">
+ {% trans "Register" %}
+ </button>
+ </div>
+</form>
+
+{% endblock %}