{% extends 'layout.html' %} {% load i18n %} {% block title %}{% trans "Reset Password" %}{% endblock %} {% block content %}

{% trans "Reset Password" %}

{% if errors %}
{% for error in errors %}

{{ error }}

{% endfor %}
{% endif %}
{% csrf_token %}
{% include 'snippets/form_errors.html' with errors_list=form.password.errors id="desc_password" %}
{{ form.confirm_password }} {% include 'snippets/form_errors.html' with errors_list=form.confirm_password.errors id="desc_confirm_password" %}
{% include 'snippets/about.html' %}
{% endblock %}