password_reset_done.html 644 B

123456789101112131415161718192021
  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 %}{% trans 'Password reset successful' %}{% endblock %}
  10. {% block content %}
  11. <h1>{% trans 'Password reset successful' %}</h1>
  12. <p>{% trans "We've emailed you instructions for setting your password. You should be receiving 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 %}