aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/accounts/register.html
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-08-04 10:11:24 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-08-04 10:11:24 +0300
commit63b0fc6269b38edf7234b9f151b80d81f614c0a3 (patch)
tree555de3068f33f8dddb4619349bbea7d9b7c822fd /servo/templates/accounts/register.html
downloadServo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.gz
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.bz2
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.zip
Initial commit
First public commit
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 %}