password_reset_done.html 474 B

12345678910111213141516
  1. {% extends "account/base.html" %}
  2. {% load i18n %}
  3. {% load account %}
  4. {% block head_title %}{% trans "Password Reset" %}{% endblock %}
  5. {% block content %}
  6. <h1>{% trans "Password Reset" %}</h1>
  7. {% if user.is_authenticated %}
  8. {% include "account/snippets/already_logged_in.html" %}
  9. {% endif %}
  10. <p>{% blocktrans %}We have sent you an e-mail. Please contact us if you do not receive it within a few minutes.{% endblocktrans %}</p>
  11. {% endblock %}