From 613e8b010ea875822a412713aa98eac4d359e088 Mon Sep 17 00:00:00 2001 From: Greg Newman Date: Thu, 19 Jan 2023 15:38:06 -0500 Subject: [PATCH] :art: change layout of signup template Put graphic to right of signup form. --- templates/account/signup.html | 73 ++++++++++++++++++++--------------- 1 file changed, 42 insertions(+), 31 deletions(-) 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 %}