diff options
author | Akshen | 2019-05-13 16:15:57 +0530 |
---|---|---|
committer | Akshen | 2019-05-13 16:15:57 +0530 |
commit | 8543fed00c912877375b0835b63c765baed654e2 (patch) | |
tree | c0224a75d12f3708646db6b3d78dae88bbce6ec6 /fossee_manim/templates/registration/password_reset_confirm.html | |
parent | de7e3898ccb851dda8b5f9e69023d4b630e5f080 (diff) | |
download | FOSSEE_animations-8543fed00c912877375b0835b63c765baed654e2.tar.gz FOSSEE_animations-8543fed00c912877375b0835b63c765baed654e2.tar.bz2 FOSSEE_animations-8543fed00c912877375b0835b63c765baed654e2.zip |
Minor Updates
- Proposal 1 fields changed
- Forgot Password files moved
- No search Results Found
- Pincode field added
Diffstat (limited to 'fossee_manim/templates/registration/password_reset_confirm.html')
-rw-r--r-- | fossee_manim/templates/registration/password_reset_confirm.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fossee_manim/templates/registration/password_reset_confirm.html b/fossee_manim/templates/registration/password_reset_confirm.html new file mode 100644 index 0000000..9f5b47a --- /dev/null +++ b/fossee_manim/templates/registration/password_reset_confirm.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} +{% block pagetitle %}Reset Password{% endblock %} + +{% block content %} + {% if validlink %} + <p>Please enter your new password twice so we can verify you typed it in correctly</p>. + <form method="post"> + {% csrf_token %} + {{ form.as_p }} + <button class= "btn" type="submit">Submit</button> + </form> + {% else %} + <p>This reset link is no longer valid!</p> + {% endif %} +{% endblock %}
\ No newline at end of file |