summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/admin/templates/registration/password_reset_complete.html
blob: fceb167a88acff87729eb57f338e182c9c44cf41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "admin/base_site.html" %}
{% load i18n %}

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

{% block title %}{% trans 'Password reset complete' %}{% endblock %}

{% block content %}

<h1>{% trans 'Password reset complete' %}</h1>

<p>{% trans "Your password has been set.  You may go ahead and log in now." %}</p>

<p><a href="{{ login_url }}">{% trans 'Log in' %}</a></p>

{% endblock %}