django-fobi/examples/simple/templates/registration/password_reset_complete.html
Artur Barseghyan f315c9bcc6 initial
2014-10-11 05:54:24 +02:00

19 lines
599 B
HTML

{% extends "registration/registration_base.html" %}
{% load i18n %}
{% block page-title %}{% trans "Password reset complete" %}{% endblock page-title %}
{% block body-attrs %} class="standalone"{% endblock body-attrs %}
{% block content %}
{% url 'auth_login' as auth_login_url %}
<div class="{{ fobi_theme.custom_data.page_header_html_class }}">
<h1>{% trans "Password reset complete" %}</h1>
</div>
<p>{% trans "Your password has been reset!" %}</p>
<p>
{% blocktrans %}You may now <a href="{{ auth_login_url }}">log in</a>.{% endblocktrans %}
</p>
{% endblock content %}