| 1 | {% extends "admin/base_site.html" %} |
| 2 | {% load i18n %} |
| 3 | {% load url from future %} |
| 4 | |
| 5 | {% block breadcrumbs %} |
| 6 | <div class="breadcrumbs"> |
| 7 | <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a> |
| 8 | › {% trans 'Password reset' %} |
| 9 | </div> |
| 10 | {% endblock %} |
| 11 | |
| 12 | {% block title %}{% trans 'Password reset successful' %}{% endblock %} |
| 13 | |
| 14 | {% block content %} |
| 15 | |
| 16 | <h1>{% trans 'Password reset successful' %}</h1> |
| 17 | |
| 18 | <p>{% trans "We've e-mailed you instructions for setting your password to the e-mail address you submitted. You should be receiving it shortly." %}</p> |
| 19 | |
| 20 | {% endblock %} |