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

15 lines
444 B
HTML

{% extends "registration/registration_base.html" %}
{% load i18n %}
{% block page-title %}{% trans "Password changed" %}{% endblock page-title %}
{% block body-attrs %} class="standalone"{% endblock body-attrs %}
{% block content %}
<div class="{{ fobi_theme.custom_data.page_header_html_class }}">
<h1>{% trans "Password changed" %}</h1>
</div>
<p>{% trans "Password successfully changed!" %}</p>
{% endblock content %}