{% extends "sites_faciles/base.html" %} {% load widget_tweaks i18n static dsfr_tags %} {% block title %} {% translate "Password required" %} — {{ settings.sites_faciles_content_manager.CmsDsfrConfig.site_title }} {% endblock title %} {% block content %}

{% translate "Password required" %}

{% block password_required_message %}

{% translate "You need a password to access this page." %}

{% endblock password_required_message %}

{% csrf_token %} {{ form.non_field_errors }}
{% if form.password.errors %} {{ form.password |add_class:"fr-password__input fr-input fr-input--error" }} {% else %} {{ form.password |add_class:"fr-password__input fr-input" }} {% endif %}
{% translate "Show password" as show_password %}
{% if form.password.errors %}
{{ form.password.errors }}
{% endif %}
{% for field in form.hidden_fields %}{{ field }}{% endfor %}
  • {% translate "Continue" as continue_label %}
{% endblock content %}