ptcoffee_django/templates/account/password_reset_from_key_done.html
2023-01-21 14:15:36 -07:00

12 lines
264 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Change Password" %}{% endblock %}
{% block content %}
<article>
<h1>{% trans "Change Password" %}</h1>
<p>{% trans 'Your password is now changed.' %}</p>
</article>
{% endblock %}