{% extends "layouts/base-auth-minimal.html" %} {% load static i18n %} {% block title %} Login Minimal {% endblock %} {% block stylesheets %} {% endblock stylesheets %} {% block content %}

{% trans "Enter new password" %}

{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}

{% csrf_token %} {% for field in form %}
{{field}}
{% if field.errors %}
{% for error in field.errors %}

{{ error }}

{% endfor %}
{% endif %} {% endfor %}
{% endblock content %}