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/email_confirm.html |
init commit - from cookiecutter
Diffstat (limited to '')
-rw-r--r-- | ctrack/templates/account/email_confirm.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/ctrack/templates/account/email_confirm.html b/ctrack/templates/account/email_confirm.html new file mode 100644 index 0000000..46c7812 --- /dev/null +++ b/ctrack/templates/account/email_confirm.html @@ -0,0 +1,32 @@ +{% extends "account/base.html" %} + +{% load i18n %} +{% load account %} + +{% block head_title %}{% trans "Confirm E-mail Address" %}{% endblock %} + + +{% block inner %} +<h1>{% trans "Confirm E-mail Address" %}</h1> + +{% if confirmation %} + +{% user_display confirmation.email_address.user as user_display %} + +<p>{% blocktrans with confirmation.email_address.email as email %}Please confirm that <a href="mailto:{{ email }}">{{ email }}</a> is an e-mail address for user {{ user_display }}.{% endblocktrans %}</p> + +<form method="post" action="{% url 'account_confirm_email' confirmation.key %}"> +{% csrf_token %} + <button class="btn btn-primary" type="submit">{% trans 'Confirm' %}</button> +</form> + +{% else %} + +{% url 'account_email' as email_url %} + +<p>{% blocktrans %}This e-mail confirmation link expired or is invalid. Please <a href="{{ email_url }}">issue a new e-mail confirmation request</a>.{% endblocktrans %}</p> + +{% endif %} + +{% endblock %} + |