summaryrefslogtreecommitdiff
path: root/static/website/templates/registration/password_reset_form.html
diff options
context:
space:
mode:
authorPrashant S2018-08-23 17:40:00 +0530
committerGitHub2018-08-23 17:40:00 +0530
commitfd8043402a56fe47f47938b3874c93607616a20c (patch)
tree840a015b9bb62c4b7715212453f1235411f5efb1 /static/website/templates/registration/password_reset_form.html
parent5fc9c374d7139d8364519a9f28f07be645d62eeb (diff)
parent83e14c33bae4ef1ad5e8546408caf7232e962c75 (diff)
downloadSciPy2018-fd8043402a56fe47f47938b3874c93607616a20c.tar.gz
SciPy2018-fd8043402a56fe47f47938b3874c93607616a20c.tar.bz2
SciPy2018-fd8043402a56fe47f47938b3874c93607616a20c.zip
Merge pull request #10 from FOSSEE/developmentHEADmaster
added new html files and views.
Diffstat (limited to 'static/website/templates/registration/password_reset_form.html')
-rwxr-xr-xstatic/website/templates/registration/password_reset_form.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/static/website/templates/registration/password_reset_form.html b/static/website/templates/registration/password_reset_form.html
new file mode 100755
index 0000000..b5d900a
--- /dev/null
+++ b/static/website/templates/registration/password_reset_form.html
@@ -0,0 +1,26 @@
+{% extends "base.html" %}
+{% load static %}
+ {% block content %}
+<section id="password_reset" class="section password_reset container-fluid">
+<div class="container">
+
+<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>
+</div>
+
+<div class="row" style="margin-top: 4vh;"></div>
+</section>
+{% endblock %}