summaryrefslogtreecommitdiff
path: root/website/templates/registration/password_reset_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'website/templates/registration/password_reset_form.html')
-rw-r--r--website/templates/registration/password_reset_form.html69
1 files changed, 69 insertions, 0 deletions
diff --git a/website/templates/registration/password_reset_form.html b/website/templates/registration/password_reset_form.html
new file mode 100644
index 0000000..5b40bbf
--- /dev/null
+++ b/website/templates/registration/password_reset_form.html
@@ -0,0 +1,69 @@
+{% extends 'base.html' %}
+{% 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="header">
+ <h1>Scipy India 2016</h1>
+ <h2>Reset Password</h2>
+</header>
+{% endblock %}
+
+<div id="wrapper">
+
+{% block nav %}
+
+ <nav id="nav" class="alt">
+ <ul>
+ <li><a href="{% url 'website:home' %}" class="active">Scip India 2016</a></li>
+
+ {% if user and not user.is_anonymous %}
+ <li class="dropdown">
+ <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ user.get_full_name|default:user.username }}<b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li><a href="{% url 'auth:logout' %}?next=/2016/cfp">Logout</a></li>
+
+ </ul>
+ {% endif %}
+ </ul>
+ </nav>
+{% endblock %}
+
+
+
+{% block content %}
+<div id="wrapper">
+<div id="main">
+<section id="content" class="main">
+<div><h2> Recovery Email </h2></div>
+<br>
+Kindly Enter Your Email ID used for Registration. The password Reset link wll 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 }} <input type="submit" 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 %}