diff options
Diffstat (limited to 'ctrack/templates/account/password_reset_from_key_done.html')
-rw-r--r-- | ctrack/templates/account/password_reset_from_key_done.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ctrack/templates/account/password_reset_from_key_done.html b/ctrack/templates/account/password_reset_from_key_done.html new file mode 100644 index 0000000..89be086 --- /dev/null +++ b/ctrack/templates/account/password_reset_from_key_done.html @@ -0,0 +1,10 @@ +{% extends "account/base.html" %} + +{% load i18n %} +{% block head_title %}{% trans "Change Password" %}{% endblock %} + +{% block inner %} + <h1>{% trans "Change Password" %}</h1> + <p>{% trans 'Your password is now changed.' %}</p> +{% endblock %} + |