summaryrefslogtreecommitdiff
path: root/fossee_manim/templates/registration/password_change_done.html
blob: 93b93cbff77a356acb79164875a2a4b5dcd3ee91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 %}