blob: 14df20cedd0f9604876abdaa0f4e6b3552285d1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% block pagetitle %}Password change successful{% 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 %}
|