31 lines
1.4 KiB
Twig
31 lines
1.4 KiB
Twig
{% if uri.param('token') and uri.param('task') %}
|
|
{% 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) %}
|
|
|
|
<section id="grav-login">
|
|
{{ content|raw }}
|
|
|
|
<form method="post" action="{{ (base_url_relative ~ uri.path)|e }}" classes="{{ form_outer_classes }}">
|
|
{% for field in form.fields %}
|
|
{% set field = prepare_form_field(field, field_name) %}
|
|
{% if field %}
|
|
{% set value = attribute(grav.twig.twig_vars, field.name) is defined ? attribute(grav.twig.twig_vars, field.name) : null %}
|
|
{% set field_templates = include_form_field(field.type, field_layout) %}
|
|
{% block field %}
|
|
{% include field_templates ignore missing %}
|
|
{% endblock %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<div class="form-actions secondary-accent">
|
|
<button type="submit" class="button primary" name="task" value="login.reset"><i class="fa fa-key"></i> {{ "PLUGIN_LOGIN.BTN_RESET_PASSWORD"|t }}</button>
|
|
</div>
|
|
|
|
{{ nonce_field('reset-form', 'reset-form-nonce')|raw }}
|
|
</form>
|
|
</section>
|
|
{% endif %}
|