diff options
Diffstat (limited to 'django/contrib/admin/templates/registration/password_change_done.html')
| -rw-r--r-- | django/contrib/admin/templates/registration/password_change_done.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/django/contrib/admin/templates/registration/password_change_done.html b/django/contrib/admin/templates/registration/password_change_done.html new file mode 100644 index 0000000000..4345b9bcaa --- /dev/null +++ b/django/contrib/admin/templates/registration/password_change_done.html @@ -0,0 +1,13 @@ +{% extends "admin/base_site" %} + +{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> › Password change</div>{% endblock %} + +{% block title %}Password change successful{% endblock %} + +{% block content %} + +<h1>Password change successful</h1> + +<p>Your password was changed.</p> + +{% endblock %} |
