diff options
author | ttt | 2017-05-13 00:29:47 +0530 |
---|---|---|
committer | ttt | 2017-05-13 00:29:47 +0530 |
commit | 4336f5f06f61de30ae3fa54650fce63a9d5ef5be (patch) | |
tree | 23b4ee9b8e8f24bf732acf2f7ad22ed50cdd5670 /templates/password/edit.html | |
download | SBHS-2018-Rpi-4336f5f06f61de30ae3fa54650fce63a9d5ef5be.tar.gz SBHS-2018-Rpi-4336f5f06f61de30ae3fa54650fce63a9d5ef5be.tar.bz2 SBHS-2018-Rpi-4336f5f06f61de30ae3fa54650fce63a9d5ef5be.zip |
added all server files
Diffstat (limited to 'templates/password/edit.html')
-rw-r--r-- | templates/password/edit.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/password/edit.html b/templates/password/edit.html new file mode 100644 index 0000000..487b552 --- /dev/null +++ b/templates/password/edit.html @@ -0,0 +1,25 @@ +{% extends "layout.html" %} + +{% block content %} +<div class="container"> + <div class="row"> + <div class="span11"> + <h2>Change Password</h2> + <br> + <form action="{% url 'sbhs_server.password.views.update' token %}" method="POST"> + {% csrf_token %} + <label for="email">Email</label> + <input type="email" name="email" id="email" required> + <br> + <label for="password">Password</label> + <input type="password" name="password" id="password" required> + <br> + <label for="confirm">Confirm password</label> + <input type="password" name="confirm" id="confirm" required> + <br> + <input type="submit" class="btn btn-primary" value="Change password"> + </form> + </div> + </div> +</div> +{% endblock %}
\ No newline at end of file |