summaryrefslogtreecommitdiffstats
path: root/core/templates/registration/password_reset_done.html
blob: a29461dd453e6886b9d5cd3860f18c497eed4c9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "admin/base_site.html" %}
{% load i18n %}

{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url 'admin:index' %}">{% trans "Home" %}</a>
&rsaquo; {% trans "Password reset" %}
</div>
{% endblock breadcrumbs %}

{% block title %}{{ title }}{% endblock title %}
{% block content_title %}<h1>{{ title }}</h1>{% endblock content_title %}
{% block content %}

<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>

<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>

{% endblock content %}