11 lines
No EOL
366 B
HTML
11 lines
No EOL
366 B
HTML
{% extends 'base.html' %}
|
|
{% load crispy_forms_tags i18n %}
|
|
|
|
{% block head_title %}{% trans "Password Change Done" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container mx-auto max-w-md mt-6 text-center">
|
|
<h2 class="text-3xl font-bold mb-4">{% trans "Password Change Done" %}</h2>
|
|
<p>{% trans "Your password has been changed." %}</p>
|
|
</div>
|
|
{% endblock %} |