summaryrefslogtreecommitdiff
path: root/website/templates/register/password_reset_complete.html
blob: 16d050248f9dbe2db542ffda3ecf3a7816e09dc6 (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

{% load static %}

<!DOCTYPE HTML>
<html>
  <head>
    <title>Call for Proposal</title>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
    <link rel="stylesheet" href="assets/css/main.css" />
    <!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
    <!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
  </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">
<p>Your password has been reset. </p>
<p>Please <a href="{% url 'website:cfp' %}">Log in</a> with your new password.</p>
</section>
</div>
</div>
{% endblock %}