diff options
author | Sharanya A | 2019-11-26 15:48:39 +0530 |
---|---|---|
committer | GitHub | 2019-11-26 15:48:39 +0530 |
commit | c69720de4ea46628d81358b748daabf843c52357 (patch) | |
tree | 5044f017f777d8005fefb4985a17f4aaaec91117 /fossee_manim/templates/registration/password_change_done.html | |
parent | ab16ecbb34d5b301d86a33f4d019b25de261f6cf (diff) | |
parent | f2ac50021461637225c77f633c0818f100e87ed1 (diff) | |
download | FOSSEE_animations-c69720de4ea46628d81358b748daabf843c52357.tar.gz FOSSEE_animations-c69720de4ea46628d81358b748daabf843c52357.tar.bz2 FOSSEE_animations-c69720de4ea46628d81358b748daabf843c52357.zip |
- provide reviewers option to delete proposals
- allow segregation of proposals based on their status
- allow performing basic search on proposal_status page
Diffstat (limited to 'fossee_manim/templates/registration/password_change_done.html')
-rw-r--r-- | fossee_manim/templates/registration/password_change_done.html | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/fossee_manim/templates/registration/password_change_done.html b/fossee_manim/templates/registration/password_change_done.html index d72f7f5..2e81207 100644 --- a/fossee_manim/templates/registration/password_change_done.html +++ b/fossee_manim/templates/registration/password_change_done.html @@ -1,20 +1,19 @@ {% extends "registration/base.html" %} -{% block title %} - Password change successful +{% block title %} +Password change successful {% endblock %} {% block script %} <script type="text/javascript"> - window.setTimeout(function() - { - location.href="{{ URL_ROOT }}/login/" + window.setTimeout(function () { + location.href = "{{ URL_ROOT }}/login/" }, 3000); </script> {% endblock %} {% block content %} - <br> - <h3>Your password has been changed successfully.</h3> - <h4>Redirecting ...</h4> +<br> +<h3>Your password has been changed successfully.</h3> +<h4>Redirecting ...</h4> {% endblock %}
\ No newline at end of file |