+
diff --git a/templates/password_reset/recovery_done.html b/templates/password_reset/recovery_done.html
index 6d79be5..24b27e4 100644
--- a/templates/password_reset/recovery_done.html
+++ b/templates/password_reset/recovery_done.html
@@ -3,18 +3,21 @@
{% block title %}{% trans "New password set" %}{% endblock %}
{% block content %}
+ {% include 'partials/header.html' %}
+
+
+
+
Успех
+
-
-
-
+
+ {% trans "Your password has successfully been reset. You can use it right now on the login page." %}
+
-
-
+ {% include 'partials/footer.html' %}
+
+
-
-
Успех
- {% trans "Your password has successfully been reset. You can use it right now on the login page." %}
-
-
-
{% endblock %}
+
+
diff --git a/templates/password_reset/recovery_email.txt b/templates/password_reset/recovery_email.txt
index f7a509c..9c4af9c 100644
--- a/templates/password_reset/recovery_email.txt
+++ b/templates/password_reset/recovery_email.txt
@@ -4,6 +4,6 @@
{% trans "You can set your new password by following this link:" %}
-http{% if secure %}s{% endif %}://{{ site.domain }}
+http{% if secure %}s{% endif %}://{{ site.domain }}{% url "password_reset_reset" token %}
{% trans "If you don't want to reset your password, simply ignore this email and it will stay unchanged." %}
diff --git a/templates/password_reset/recovery_form.html b/templates/password_reset/recovery_form.html
index 927426c..3481963 100644
--- a/templates/password_reset/recovery_form.html
+++ b/templates/password_reset/recovery_form.html
@@ -5,25 +5,37 @@
{% block content %}
{% include 'partials/header.html' %}
+
-
- {% if invalid %}{% url "password_reset_recover" as recovery_url %}
- {% blocktrans %}Sorry, this password reset link is invalid. You can still
- request a new one.{% endblocktrans %}
- {% else %}
-
- {% blocktrans %}Hi, {{ username }}. Please choose your new password.{% endblocktrans %}
-
-
-
- {% csrf_token %}
-
-
-
-
{{ form.password1.errors.as_text }}
-
-
-
-
{{ form.password2.errors.as_text }}
-
-
-
-
-
-
- {% endif %}
+ {% include 'partials/header.html' %}
+
+
+
+
Сброс пароля
+
+
+
+ {% if invalid %}{% url "password_reset_recover" as recovery_url %}
+
+ {% blocktrans %}Sorry, this password reset link is invalid. You can still
+ request a new one.{% endblocktrans %}
+
+ {% else %}
+
+
+
+
+
+ {% blocktrans %}Hi, {{ username }}. Please choose your new password.
+ {% endblocktrans %}
+
+ {% blocktrans with ago=timestamp|timesince %}An email was sent to {{ email }}
+ {{ ago }} ago. Use the link in it to set a new password.{% endblocktrans %}
+
-
-
-
+ {% include 'partials/footer.html' %}
+
+
-
-
-
-
-
Письмо отправлено
-{#
#}
- {% blocktrans with ago=timestamp|timesince %}An email was sent to {{ email }} {{ ago }} ago. Use the link in it to set a new password.{% endblocktrans %}
-