From 95bb4b3c871732f354132fc1571a00b0acbf68ac Mon Sep 17 00:00:00 2001 From: komalsheth286 Date: Thu, 8 Sep 2016 10:44:04 +0530 Subject: First Commit --- .../registration/password_reset_confirm.html | 106 +++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 website/templates/registration/password_reset_confirm.html (limited to 'website/templates/registration/password_reset_confirm.html') diff --git a/website/templates/registration/password_reset_confirm.html b/website/templates/registration/password_reset_confirm.html new file mode 100644 index 0000000..32c6bbd --- /dev/null +++ b/website/templates/registration/password_reset_confirm.html @@ -0,0 +1,106 @@ +{% extends 'base.html' %} +{% load static %} + + + + + Call for Proposal + + + + + + + + + + + {% block header %} + +{% endblock %} + +
+ +{% block nav %} + + +{% endblock %} + + + +{% block content %} +
+
+
+ {% if validlink %} +
+

Please enter your new password twice. + So we can verify you typed it in correctly.

+
+
+
+ +
+ + + + + + + + + + + + +
+
{{ form.new_password1.errors }} + {{ form.new_password1 }}
{{ form.new_password2.errors }} + {{ form.new_password2 }}

+
+
+ {% else %} +

Password reset unsuccessful

+

The password reset link was invalid,
+ possibly because it has already been used.
+ Please request a new password reset.

+ {% endif %} +
+
+
+ + +{% endblock %} -- cgit