diff options
Diffstat (limited to 'sbhs/templates/account/registration/password_change_done.html')
-rw-r--r-- | sbhs/templates/account/registration/password_change_done.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sbhs/templates/account/registration/password_change_done.html b/sbhs/templates/account/registration/password_change_done.html new file mode 100644 index 0000000..6641ef7 --- /dev/null +++ b/sbhs/templates/account/registration/password_change_done.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} + +{% block title %}Password changed{% endblock %} + +{% block content %} + <div class = "container"> + <h1>Password changed</h1> + <p>Your password has been successfully changed.</p> + </div> + +{% endblock %} + |