diff --git a/templates/account/signup.html b/templates/account/signup.html index 8378e038..f49ff965 100644 --- a/templates/account/signup.html +++ b/templates/account/signup.html @@ -7,43 +7,54 @@ {% block content %}
-
-

{% trans "Sign Up" %}

-

- {% blocktrans %}Already have an account? Then please sign in.{% endblocktrans %} -

-
+
+
+
+

{% trans "Sign Up" %}

+

+ {% blocktrans %}Already have an account? Then please sign in.{% endblocktrans %} +

+
-
-
- {% csrf_token %} + +
+ {% csrf_token %} - {% if form.errors %} - {% for error in field.errors %} -

- {{ error|escape }} -

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

+ {{ error|escape }} +

+ {% endfor %} + {% endif %} - {% for field in form.visible_fields %} -
- {{ field }} - {% if field.help_text %} - {{ field.help_text }} + {% for field in form.visible_fields %} +
+ {{ field }} + {% if field.help_text %} + {{ field.help_text }} + {% endif %} +
+ {% endfor %} + + {% if redirect_field_value %} + {% endif %}
- {% endfor %} - - {% if redirect_field_value %} - - {% endif %} - +
+ +
+
- + +
+
+
+
{% endblock %}