summaryrefslogtreecommitdiff
path: root/website/templates/register/password_reset_form.html
blob: 64bde9871a5ebec426d9870cf90ccb823b13bc19 (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
54
55
56
57
58
59
60
{% load static %}

<!DOCTYPE HTML>
<html>
  <head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
      <meta name="description" content="">
      <meta name="author" content="">
      <link rel="icon" href="{% static 'img/fevicon.png'%}" type="icon">
      <title>SciPy India 2017</title>
      <!-- Bootstrap core CSS -->
      <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
      <link href="{% static 'vendor/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet">
      <!-- Custom styles for this template -->
      <link href="{% static 'css/one-page-wonder.css' %}" rel="stylesheet">
   </head>
  <body>
{% include 'navbar.html' %}

<center>

      {% block header %}
       <header id="header1" style="background-color: #01c3d9;">
       <br>
            <h1>SciPy India 2017</h1>
            <h2>Reset Password</h2>
            <br>
</header> 
</center>
{% endblock %}

{% block content %}
<div id="wrapper" style="margin-left: 10%;">
<div id="main">
<section id="content" class="main">
<br>
<div><h4> Recovery Email </h4></div>
<br>
 Kindly enter your email ID used for registration. The password reset link will be mailed to the same.
<br><br>
<form action="" method="post">
    {% csrf_token %}
   {{ form.email.errors }}
    <p><label for="id_email">E-mail address:</label> {{ form.email }} 

      <br/>
      <br><input type="submit" class ="btn btn-primary gradient" style="border: none;" value="Reset Password" /></p>

    <!-- <button class="btn btn-sm btn-primary" type="submit">Request</button>
    <a class="btn btn-sm " href="{{URL_ROOT}}/accounts/login/">Cancel</a> -->
</form>

<br>

</section>
</div>
</div>

{% endblock %}