{% extends "password_reset/base.html" %}{% load i18n %} {% 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/footer.html' %}
{% endblock %}