diff --git a/pinaxcon/templates/account/password_reset.html b/pinaxcon/templates/account/password_reset.html new file mode 100644 index 0000000000000000000000000000000000000000..f707d815673321ff710e4bd35e026c9140e3aeb0 --- /dev/null +++ b/pinaxcon/templates/account/password_reset.html @@ -0,0 +1,36 @@ +{% extends "site_base.html" %} + +{% load i18n %} +{% load bootstrap %} +{% load account_tags %} + +{% block head_title %}{% trans "Password reset" %}{% endblock %} + +{% user_display request.user as user_display %} + +{% block content %} +
+
+
+ {% trans "Password reset" %} +

{% trans "Forgotten your password? Enter your email address below, and we'll send you an email allowing you to reset it." %}

+
+
+ {% csrf_token %} + {{ form|bootstrap }} + +
+
+
+
+
+

{% blocktrans %}If you have any trouble resetting your password, contact us at {{ THEME_CONTACT_EMAIL }}.{% endblocktrans %}

+{% endblock %} + +{% block extra_body %} + +{% endblock %}