X-Git-Url: https://git.mdrn.pl/cas.git/blobdiff_plain/e01cec52e391ee93340d8b0884f9c046e6ad4144..3a65fcbfa423d5627e41c2f9e17c464d4a594087:/src/accounts/templates/registration/password_reset_confirm.html?ds=sidebyside diff --git a/src/accounts/templates/registration/password_reset_confirm.html b/src/accounts/templates/registration/password_reset_confirm.html new file mode 100644 index 0000000..e8292ab --- /dev/null +++ b/src/accounts/templates/registration/password_reset_confirm.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} +{% load i18n %} + + +{% block title %}{{ title }}{% endblock %} + + +{% block content %} +
+
+

{{ title }}

+ + {% if validlink %} + +

{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}

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

{% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." %}

+ {% endif %} +
+
+{% endblock %}