We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59eb336 commit 7b9a371Copy full SHA for 7b9a371
login/templates/account/signup.html
@@ -0,0 +1,25 @@
1
+{% extends "account/base.html" %}
2
+{% load i18n %}
3
+
4
+{% block head_title %}
5
+ {% translate "Signup" %}
6
+{% endblock head_title %}
7
+{% block inner %}
8
+ <h1>{% translate "Sign Up" %}</h1>
9
+ <p>
10
+ {% blocktranslate %}Already have an account? Then please <a href="{{ login_url }}">sign in</a>.{% endblocktranslate %}
11
+ </p>
12
+ <form class="signup"
13
+ id="signup_form"
14
+ method="post"
15
+ action="{% url 'account_signup' %}">
16
+ {% csrf_token %}
17
+ {{ form }}
18
+ {% if redirect_field_value %}
19
+ <input type="hidden"
20
+ name="{{ redirect_field_name }}"
21
+ value="{{ redirect_field_value }}" />
22
+ {% endif %}
23
+ <button class="btn btn-primary" type="submit">{% translate "Sign Up" %} »</button>
24
+ </form>
25
+{% endblock inner %}
0 commit comments