diff --git a/templates/account/password_reset.html b/templates/account/password_reset.html new file mode 100644 index 000000000..b5b33a6b0 --- /dev/null +++ b/templates/account/password_reset.html @@ -0,0 +1,20 @@ +{% extends "account/base.html" %} +{% load i18n account %} + +{% block page_title %}{% trans "Password Reset" %}{% endblock page_title %} + +{% block content %} +
{% trans "Forgotten your password? Enter your email address below and we'll send you an email allowing you to reset it." %}
+ + + +{% endblock content %} diff --git a/templates/account/password_reset_done.html b/templates/account/password_reset_done.html new file mode 100644 index 000000000..00eac2f07 --- /dev/null +++ b/templates/account/password_reset_done.html @@ -0,0 +1,11 @@ +{% extends "account/base.html" %} +{% load i18n %} + +{% block page_title %}{% trans "Password Reset" %}{% endblock page_title %} + +{% block content %} +{% trans "We have sent you an email. Please contact us if you do not receive it within a few minutes." %}
+ +{% endblock content %}