Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / django / contrib / admin / templates / registration / password_reset_done.html @ 1a305335

History | View | Annotate | Download (560 Bytes)

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
&rsaquo; {% 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 %}