blob: 6ccd5d4c0f4809ab9ef24e5b1cc496087266c17b (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{% load static %}
<!DOCTYPE HTML>
<html>
<head>
<title>Forgot Password</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
{% block header %}
<header id="header1">
<h1>SciPy India 2017</h1>
<h2>Reset Password</h2>
</header>
{% endblock %}
{% block nav %}
<div id="navbar-main">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="{% url 'website:home' %}" class="active">Home</a></li>
</ul>
</div>
</div>
</div>
{% endblock %}
{% block content %}
<div id="wrapper">
<div id="main">
<section id="content" class="main">
<script type="text/javascript">
window.setTimeout(function()
{
location.href="{{ URL_ROOT }}/accounts/"
}, 2000);
</script>
<h3>Your password has been changed successfully.</h3>
<h4>Redirecting ...</h4>
</section>
</div>
</div>
{% endblock %}
|