X-Git-Url: https://git.mdrn.pl/cas.git/blobdiff_plain/f88d7170763153204cf4264837b2a1997ba7903c..de84f8005cbb194987bd71fd2e1282f3a113f3cf:/src/accounts/templates/registration/password_reset_form.html diff --git a/src/accounts/templates/registration/password_reset_form.html b/src/accounts/templates/registration/password_reset_form.html new file mode 100755 index 0000000..43441ea --- /dev/null +++ b/src/accounts/templates/registration/password_reset_form.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} +{% load i18n %} + +{% block title %}{% trans "Password reset" %}{% endblock %} + +{% block content_enclosed %} + +

{% trans "Password reset" %}

+ +

{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}

+ +
{% csrf_token %} +{{ form.email.errors }} +

{{ form.email }}

+
+ +{% endblock %}