You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

password_reset_done.html 669B

12345678910111213141516171819
  1. {% extends "admin/base_site.html" %}
  2. {% load i18n %}
  3. {% block breadcrumbs %}
  4. <div class="breadcrumbs">
  5. <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
  6. &rsaquo; {% trans 'Password reset' %}
  7. </div>
  8. {% endblock %}
  9. {% block title %}{{ title }}{% endblock %}
  10. {% block content_title %}<h1>{{ title }}</h1>{% endblock %}
  11. {% block content %}
  12. <p>{% trans "We've emailed you instructions for setting your password, if an account exists with the email you entered. You should receive them shortly." %}</p>
  13. <p>{% trans "If you don't receive an email, please make sure you've entered the address you registered with, and check your spam folder." %}</p>
  14. {% endblock %}