diff options
author | prashantsinalkar | 2018-08-23 16:59:35 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-08-23 16:59:35 +0530 |
commit | 756d9e437cc0e573558046d7ad2b1e629487865d (patch) | |
tree | e9fd275a3fd808f9c25a1f343210c6e997e22a38 /static/website/templates/registration/password_change_form.html | |
parent | 38d3b98ef3695add04945151a558d954ebf02140 (diff) | |
download | SciPy2018-756d9e437cc0e573558046d7ad2b1e629487865d.tar.gz SciPy2018-756d9e437cc0e573558046d7ad2b1e629487865d.tar.bz2 SciPy2018-756d9e437cc0e573558046d7ad2b1e629487865d.zip |
added new html files
Diffstat (limited to 'static/website/templates/registration/password_change_form.html')
-rwxr-xr-x | static/website/templates/registration/password_change_form.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/static/website/templates/registration/password_change_form.html b/static/website/templates/registration/password_change_form.html new file mode 100755 index 0000000..a27c585 --- /dev/null +++ b/static/website/templates/registration/password_change_form.html @@ -0,0 +1,49 @@ + +{% 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> + + + {% block header %} + <header id="header1" style="background-color: #01c3d9;"> + <center> + <h1>SciPy India 2017</h1> + <h2>Reset Password</h2> + </center> +</header> +{% endblock %} + +{% block content %} +<div id="wrapper" style="margin-left: 10%;"> +<div id="main"> +<section id="content" class="main"> +<br> +<form action="" method="post" > + {% csrf_token %} + <center> + <table class=span1> + {{ form }} + </table> + </center> + <center><button class="btn" type="submit">Change Password</button> + <button class="btn btn-primary gradient" type="button" name="button" onClick='location.replace("{{URL_ROOT}}/accounts/");'>Cancel</button></center> +</form> +</section> +</div> +</div> +{% endblock %} |