{% extends 'base.html' %} {% load i18n %} {% block header_modifier %}header--light-bg{% endblock %} {% block page_title %}Set a password{% endblock %} {% block title %}{% trans "Set a password" %}{% endblock %} {% block content %}
{% if form.non_field_errors %} {% endif %} {% if form.errors %} {% endif %}
{% csrf_token %} {% for field in form %} {{ field.errors }}

{{ field.label_tag }}

{{ field }}

{% endfor %}
{% endblock %}