diff options
author | Alwin1847207 | 2019-10-03 13:51:25 +0530 |
---|---|---|
committer | Alwin1847207 | 2019-10-03 13:51:25 +0530 |
commit | 055efb407c3b265ffbc2ed47f1f0b5d1a29b6391 (patch) | |
tree | b8c8b3d1255dec1c68714b98c431df66b2d8e990 /fossee_manim/templates/registration/password_change_done.html | |
parent | ab16ecbb34d5b301d86a33f4d019b25de261f6cf (diff) | |
download | FOSSEE_animations-055efb407c3b265ffbc2ed47f1f0b5d1a29b6391.tar.gz FOSSEE_animations-055efb407c3b265ffbc2ed47f1f0b5d1a29b6391.tar.bz2 FOSSEE_animations-055efb407c3b265ffbc2ed47f1f0b5d1a29b6391.zip |
Enable deleting test proposals by reviewer
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 |