From 8543fed00c912877375b0835b63c765baed654e2 Mon Sep 17 00:00:00 2001 From: Akshen Date: Mon, 13 May 2019 16:15:57 +0530 Subject: Minor Updates - Proposal 1 fields changed - Forgot Password files moved - No search Results Found - Pincode field added --- .../templates/registration/password_reset_confirm.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 fossee_manim/templates/registration/password_reset_confirm.html (limited to 'fossee_manim/templates/registration/password_reset_confirm.html') 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 %} +

Please enter your new password twice so we can verify you typed it in correctly

. +
+ {% csrf_token %} + {{ form.as_p }} + +
+ {% else %} +

This reset link is no longer valid!

+ {% endif %} +{% endblock %} \ No newline at end of file -- cgit