10 lines
217 B
HTML
10 lines
217 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block title %} :: {% trans 'Password change' %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>{% trans 'Your password has been successfully changed.' %}</h2>
|
|
{% endblock %}
|