From 3ca730d6d2b6f9b8a5881696c4d2dc19e4eb3ea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Marti=CC=81n?= Date: Sat, 10 Jan 2015 12:59:05 +0100 Subject: [PATCH] Added missing register template --- .../bootflat/templates/account/register.html | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 shelfzilla/themes/bootflat/templates/account/register.html diff --git a/shelfzilla/themes/bootflat/templates/account/register.html b/shelfzilla/themes/bootflat/templates/account/register.html new file mode 100644 index 0000000..69b6bcb --- /dev/null +++ b/shelfzilla/themes/bootflat/templates/account/register.html @@ -0,0 +1,54 @@ +{% extends "_layout.html" %} +{% load i18n %} + +{% block main_content %} +
+
+ Para registrarte en Shelfzilla necesitarás un código de invitación. Los registros abiertos no están disponibles por el momento.
+ Permanece atento a nuestras redes sociales, ¡pronto empezaremos a repatir! +
+
+
+
+
+
+

{% trans "Register" %}

+
+
+
+ {% csrf_token %} + {% for field in form %} +
+ {% for error in field.errors %} + {{ error }} + {% endfor %} +
+
+ +
+ + {% if field.errors %} + + {% endif %} +
+
+ {% endfor %} +
+
+ +
+
+
+
+
+
+
+
+{% endblock %}