aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/accounts/register.html
diff options
context:
space:
mode:
Diffstat (limited to 'servo/templates/accounts/register.html')
-rwxr-xr-xservo/templates/accounts/register.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/servo/templates/accounts/register.html b/servo/templates/accounts/register.html
new file mode 100755
index 0000000..e1410ff
--- /dev/null
+++ b/servo/templates/accounts/register.html
@@ -0,0 +1,14 @@
+{% extends "login.html" %}
+{% load i18n %}
+
+{% block content %}
+ <form method="post" action="">
+ <h2>{% trans "Register" %}</h2>
+ {% csrf_token %}
+ {% include "form_snippet.html" %}
+ <div class="pull-right">
+ <a href="/login/" class="btn">{% trans "Back" %}</a>
+ <button type="submit" class="btn btn-primary">{% trans "Submit" %}</button>
+ </div>
+ </form>
+{% endblock content %}