diff options
Diffstat (limited to 'fossee_manim/templates/registration/password_change_done.html')
-rw-r--r-- | fossee_manim/templates/registration/password_change_done.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/fossee_manim/templates/registration/password_change_done.html b/fossee_manim/templates/registration/password_change_done.html new file mode 100644 index 0000000..93b93cb --- /dev/null +++ b/fossee_manim/templates/registration/password_change_done.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} + +{% block pagetitle %} + Password change successful +{% endblock %} + +{% block script %} +<script type="text/javascript"> + window.setTimeout(function() + { + location.href="{{ URL_ROOT }}/login/" + }, 3000); +</script> +{% endblock %} + +{% block content %} + <h3>Your password has been changed successfully.</h3> + <h4>Redirecting ...</h4> +{% endblock %}
\ No newline at end of file |