diff options
author | Prashant S | 2018-08-23 17:40:00 +0530 |
---|---|---|
committer | GitHub | 2018-08-23 17:40:00 +0530 |
commit | fd8043402a56fe47f47938b3874c93607616a20c (patch) | |
tree | 840a015b9bb62c4b7715212453f1235411f5efb1 /static/website/templates/registration/password_reset_done.html | |
parent | 5fc9c374d7139d8364519a9f28f07be645d62eeb (diff) | |
parent | 83e14c33bae4ef1ad5e8546408caf7232e962c75 (diff) | |
download | SciPy2018-master.tar.gz SciPy2018-master.tar.bz2 SciPy2018-master.zip |
added new html files and views.
Diffstat (limited to 'static/website/templates/registration/password_reset_done.html')
-rwxr-xr-x | static/website/templates/registration/password_reset_done.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/static/website/templates/registration/password_reset_done.html b/static/website/templates/registration/password_reset_done.html new file mode 100755 index 0000000..e161e5e --- /dev/null +++ b/static/website/templates/registration/password_reset_done.html @@ -0,0 +1,41 @@ +{% 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> + +<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"> +<div id="main"> +<section id="content" class="main" style="margin-left: 10%;"> +<br> + If an account exists with this email, you would receive the password reset instructions shortly. Please check your spam folder too.<br/> +</section> +</div> +</div> + {% endblock %} |