{% set layout = layout ?? form.layout ?? 'default' %} {% set field_layout = layout %} {% set client_side_validation = form.client_side_validation is not null ? form.client_side_validation : config.plugins.form.client_side_validation|default(true) %} {% set inline_errors = form.inline_errors is not null ? form.inline_errors : config.plugins.form.inline_errors(false) %}
{{ content|raw }}
{% for field in form.fields %} {% set field = prepare_form_field(field, field_name) %} {% if field %} {% set value = field.name == 'username' ? username : '' %} {# {% set value = form.value(field.name) %} #} {% set field_templates = include_form_field(field.type, field_layout) %} {% block field %} {% include field_templates ignore missing %} {% endblock %} {% endif %} {% endfor %}
{{ nonce_field('forgot-form', 'forgot-form-nonce')|raw }}