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

{% block title %}Password change successful{% endblock %}
{% block pagetitle %}Online Test {% endblock %}
{% block script %}
<script type="text/javascript">
	window.setTimeout(function()
	{   
		location.href="{{ URL_ROOT }}/exam/"
	}, 2000);
</script>
{% endblock %}
{% block content %}
<h3>Your password has been changed successfully.</h3>
<h4>Redirecting ...</h4>
{% endblock %}