2011-04-30 13:18:32 +08:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">{% trans 'Home' %}</a> › {% trans 'Password reset' %}</div>{% endblock %}
|
|
|
|
|
|
|
|
{% block title %}{% trans 'Password reset complete' %}{% endblock %}
|
|
|
|
|
2011-11-27 17:52:14 +08:00
|
|
|
{% block main_panel %}
|
2011-04-30 13:18:32 +08:00
|
|
|
|
|
|
|
<h2>{% trans 'Password reset complete' %}</h2>
|
|
|
|
|
|
|
|
<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 %}
|