summaryrefslogtreecommitdiff
path: root/fossee_manim/templates/registration/password_change_done.html
blob: d72f7f572030bea876fdb8942d0e40332d1fc1de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "registration/base.html" %}

{% block title %} 
	Password change successful
{% endblock %}

{% block script %}
<script type="text/javascript">
	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>
{% endblock %}