diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-19 15:57:06 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-19 15:57:06 +0000 |
commit | 9d76a3c52b8310726ec09e0262813f0438c21df6 (patch) | |
tree | 4acf47dce6c3aa75f8ad7c5cb56fe6486c2d64a7 /ctrack/templates/account/signup.html |
init commit - from cookiecutter
Diffstat (limited to 'ctrack/templates/account/signup.html')
-rw-r--r-- | ctrack/templates/account/signup.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ctrack/templates/account/signup.html b/ctrack/templates/account/signup.html new file mode 100644 index 0000000..6a2954e --- /dev/null +++ b/ctrack/templates/account/signup.html @@ -0,0 +1,23 @@ +{% extends "account/base.html" %} + +{% load i18n %} +{% load crispy_forms_tags %} + +{% block head_title %}{% trans "Signup" %}{% endblock %} + +{% block inner %} +<h1>{% trans "Sign Up" %}</h1> + +<p>{% blocktrans %}Already have an account? Then please <a href="{{ login_url }}">sign in</a>.{% endblocktrans %}</p> + +<form class="signup" id="signup_form" method="post" action="{% url 'account_signup' %}"> + {% csrf_token %} + {{ form|crispy }} + {% if redirect_field_value %} + <input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" /> + {% endif %} + <button class="btn btn-primary" type="submit">{% trans "Sign Up" %} »</button> +</form> + +{% endblock %} + |