diff --git a/pinaxcon/templates/account/password_reset_sent.html b/pinaxcon/templates/account/password_reset_sent.html new file mode 100644 index 0000000000000000000000000000000000000000..98aa1e89a3e1b298402405bf2cb29e0e64689392 --- /dev/null +++ b/pinaxcon/templates/account/password_reset_sent.html @@ -0,0 +1,27 @@ +{% extends "site_base.html" %} + +{% load i18n %} +{% load account_tags %} + +{% block head_title %}{% trans "Password reset sent" %}{% endblock %} + +{% block content %} +

{% trans "Password reset sent" %}

+ {% if not resend %} +

{% blocktrans %}We have sent you an email. If you do not receive it within a few minutes, try resending or contact us at {{ THEME_CONTACT_EMAIL }}.{% endblocktrans %}

+ +
+
+
+ {% csrf_token %} + {% for field in form %} + {{ field.as_hidden }} + {% endfor %} + +
+
+
+ {% else %} +

{% blocktrans %}We have resent the password email. If you do not receive it within a few minutes, contact us at {{ THEME_CONTACT_EMAIL }}.{% endblocktrans %}

+ {% endif %} +{% endblock %}