From b86bf5b8c606f491a80272fb335ad1434a4dcb7d Mon Sep 17 00:00:00 2001 From: Andrey Smakotin Date: Tue, 2 Dec 2025 00:05:45 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=B4=D0=B8=D0=B7=D0=B0=D0=B9=D0=BD=20=D1=81=D1=82?= =?UTF-8?q?=D1=80=D0=B0=D0=BD=D0=B8=D1=86=D1=8B=20=D1=81=D0=B1=D1=80=D0=BE?= =?UTF-8?q?=D1=81=D0=B0=20=D0=BF=D0=B0=D1=80=D0=BE=D0=BB=D1=8F=20=D0=B2=20?= =?UTF-8?q?=D0=B5=D0=B4=D0=B8=D0=BD=D0=BE=D0=BC=20=D1=81=D1=82=D0=B8=D0=BB?= =?UTF-8?q?=D0=B5=20=D1=81=20=D0=BA=D0=B0=D1=80=D1=82=D0=BE=D1=87=D0=BA?= =?UTF-8?q?=D0=BE=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../accounts/password_reset_confirm.html | 43 +++++++++++++------ 1 file changed, 29 insertions(+), 14 deletions(-) diff --git a/myproject/accounts/templates/accounts/password_reset_confirm.html b/myproject/accounts/templates/accounts/password_reset_confirm.html index 18f5cc7..1af9244 100644 --- a/myproject/accounts/templates/accounts/password_reset_confirm.html +++ b/myproject/accounts/templates/accounts/password_reset_confirm.html @@ -3,24 +3,39 @@ {% block title %}Сброс пароля{% endblock %} {% block content %} -
-
-

Сброс пароля

+
+
+
+ +
+

Сброс пароля

+

Введите новый пароль

+
-
-
-
- {% csrf_token %} - {% include 'accounts/password_input.html' with field_name='password1' field_label='Новый пароль' required=True %} - {% include 'accounts/password_input.html' with field_name='password2' field_label='Подтверждение пароля' required=True %} - -
+ + {% if messages %} + {% for message in messages %} + + {% endfor %} + {% endif %} + + +
+ {% csrf_token %} + {% include 'accounts/password_input.html' with field_name='password1' field_label='Новый пароль' required=True %} + {% include 'accounts/password_input.html' with field_name='password2' field_label='Подтверждение пароля' required=True %} + - +