{% set title = __("Reset password") %}
{% set formId = "pwreset" %}
{% set formError = getAndClearFormError(formId) %}

{% extends "base.twig" %}

{% block content %}

<div class="page-header">
    <h1>{{ __("Reset password") }}</h1>
</div>

<div class="main-form">
    {% if formError %}
        {% include "components/alert_error.twig" with { message: formError } %}
    {% endif %}
    <form action="{{ g.server.REQUEST_URI }}" method="post">
        <input type="hidden" name="form_id" value="{{ formId }}">

        <div class="form-group">
            <label for="i_email">{{ __("Email address:") }}</label>
            <input class="form-control" type="email" id="i_email" name="email" value="{{ lastFormField(formId, "email") }}" required autofocus>
        </div>

        <div class="form-group form-actions">
            <button class="btn btn-primary" type="submit">{{ __("Reset password") }}</button>
        </div>

        <div class="form-group form-additional">
            {{ __("I know my password and I want to %link%log in%/link%!", {
                "link": '<a href="?_action=auth">',
                "/link": '</a>',
            }) }}
        </div>
    </form>
</div>

{% endblock %}