blob: ccaf3125ac61c9b3545b6e6ae4b499c20f80bfea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{% extends "manage.html" %}
{% load static %}
{% block title %} Change Password {% endblock %}
{% block script %}
<script type="text/javascript">
window.setTimeout(function()
{
location.href="{% url 'yaksh:index' %}"
}, 2000);
</script>
{% endblock %}
{% block content %}
<br><br>
<center>
<div class="container row align-items-center">
<div class="col">
<h3>Your password has been changed successfully.</h3>
<h4>Redirecting ...</h4>
</div>
</div>
<div class="col"><img src="{% static 'yaksh/images/profile_change.gif' %}"></div>
</center>
{% endblock %}
|