summaryrefslogtreecommitdiff
path: root/src/application/templates/bootstrap-3/password_reset.twig
blob: f633106fb5a1c752a4f4ffaf5251a1d3eddd1c51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% set title = __("Reset password") %}
{% set formId = "pwreset" %}
{% set formError = getAndClearFormError(formId) %}

{% extends "base.twig" %}

{% block content %}

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

<div class="col-md-4"></div>

<div class="well col-md-4">
    {% 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_username">{{ __("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">
            <button class="btn btn-primary" type="submit">{{ __("Reset password") }}</button>
        </div>

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

<div class="col-md-4"></div>

{% endblock %}