{% extends "registration/base.html" %} {% load i18n %} {% block title %}{%trans 'Confirm password reset'%}{% endblock %} {% block content %}

{% trans 'Reset your password'%}


{% blocktrans %}Please enter your password twice.{% endblocktrans %}

{% csrf_token %}
    {% for field in form %}
  • {{ field }}
  • {% endfor %}
{% include 'registration/form_errors.html' %}
{% endblock %}