12 lines
280 B
HTML
12 lines
280 B
HTML
{% extends "registration/registration_base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Password changed" %}{% endblock %}
|
|
|
|
{% block registration_content %}
|
|
<p>{% trans "Password successfully changed!" %}</p>
|
|
{% endblock %}
|
|
|
|
|
|
{# This is used by django.contrib.auth #}
|