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 %}