2006-05-02 09:31:56 +08:00
|
|
|
{% extends "admin/base_site.html" %}
|
2005-11-04 12:59:46 +08:00
|
|
|
{% load i18n %}
|
2005-07-22 23:02:40 +08:00
|
|
|
|
2011-09-21 02:30:06 +08:00
|
|
|
{% block breadcrumbs %}
|
|
|
|
<div class="breadcrumbs">
|
|
|
|
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
|
|
|
|
› {% trans 'Password reset' %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
2005-07-27 06:54:59 +08:00
|
|
|
|
2005-11-04 12:59:46 +08:00
|
|
|
{% block title %}{% trans 'Password reset successful' %}{% endblock %}
|
2005-07-22 23:02:40 +08:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2005-11-04 12:59:46 +08:00
|
|
|
<h1>{% trans 'Password reset successful' %}</h1>
|
2005-07-22 23:02:40 +08:00
|
|
|
|
2013-02-23 20:39:21 +08:00
|
|
|
<p>{% trans "We've emailed you instructions for setting your password. You should be receiving them shortly." %}</p>
|
|
|
|
|
|
|
|
<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>
|
2005-07-22 23:02:40 +08:00
|
|
|
|
|
|
|
{% endblock %}
|