From c4e29053da2879b27d8f935abb804fdc6068d8fa Mon Sep 17 00:00:00 2001 From: Patrick Altman Date: Wed, 24 Oct 2018 21:03:36 -0500 Subject: [PATCH] Forgotten wrappers --- pinax/templates/templates/account/email_confirmation_sent.html | 2 ++ pinax/templates/templates/account/email_confirmed.html | 2 ++ .../templates/templates/account/password_reset_token_fail.html | 2 ++ pinax/templates/templates/account/signup_closed.html | 2 ++ 4 files changed, 8 insertions(+) diff --git a/pinax/templates/templates/account/email_confirmation_sent.html b/pinax/templates/templates/account/email_confirmation_sent.html index f033829..8246eaa 100644 --- a/pinax/templates/templates/account/email_confirmation_sent.html +++ b/pinax/templates/templates/account/email_confirmation_sent.html @@ -6,8 +6,10 @@ {% block head_title %}{% trans "Confirm your email address" %}{% endblock %} {% block body %} +

{% trans "Confirm your email address" %}

{% blocktrans %}We have sent you an email to {{ email }} for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at {{ THEME_CONTACT_EMAIL }}.{% endblocktrans %}

{% trans "Go back" %}

+
{% endblock %} diff --git a/pinax/templates/templates/account/email_confirmed.html b/pinax/templates/templates/account/email_confirmed.html index 9dca100..0bd3a69 100644 --- a/pinax/templates/templates/account/email_confirmed.html +++ b/pinax/templates/templates/account/email_confirmed.html @@ -6,6 +6,8 @@ {% block head_title %}{% trans "Email confirmed" %}{% endblock %} {% block body %} +

{% trans "Email confirmed" %}

{% blocktrans with email=confirmation.email_address.email %}You have confirmed {{ email }}{% endblocktrans %}

+
{% endblock %} diff --git a/pinax/templates/templates/account/password_reset_token_fail.html b/pinax/templates/templates/account/password_reset_token_fail.html index 5c3ad11..b4ee6ec 100644 --- a/pinax/templates/templates/account/password_reset_token_fail.html +++ b/pinax/templates/templates/account/password_reset_token_fail.html @@ -6,7 +6,9 @@ {% block head_title %}{% trans "Bad token" %}{% endblock %} {% block body %} +

{% trans "Bad token" %}

{% url "account_password_reset" as url %}

{% blocktrans %}The password reset link was invalid, possibly because it has already been used. Please request a new password reset.{% endblocktrans %}

+
{% endblock %} diff --git a/pinax/templates/templates/account/signup_closed.html b/pinax/templates/templates/account/signup_closed.html index 72cba7b..e19974f 100644 --- a/pinax/templates/templates/account/signup_closed.html +++ b/pinax/templates/templates/account/signup_closed.html @@ -6,10 +6,12 @@ {% block head_title %}{% trans "Sign up" %}{% endblock %} {% block body %} +

{% trans "This site is in private beta" %}

{% blocktrans %}If you have signup code you can enter it below.{% endblocktrans %}

+
{% endblock %}