aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/Security/forgotPassword.html.twig
blob: 4476ea7b3b614178bd45debad2f0193c9e5756d5 (plain) (blame)
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
{% extends "WallabagCoreBundle::layout.html.twig" %}

{% block title %}{% trans %}Forgot password{% endtrans %}{% endblock %}

{% block body_class %}login{% endblock %}

{% block menu %}{% endblock %}

{% block content %}
        <form action="{{ path('forgot_password') }}" method="post" name="forgotPasswordform">
            <fieldset class="w500p center">
                <h2 class="mbs txtcenter">{% trans %}Forgot password{% endtrans %}</h2>

                {{ form_errors(form) }}

                <p>Enter your email address below and we'll send you password reset instructions.</p>

                <div class="row">
                    {{ form_label(form.email) }}
                    {{ form_errors(form.email) }}
                    {{ form_widget(form.email) }}
                </div>

                <div class="row mts txtcenter">
                    <button type="submit">Send me reset instructions</button>
                </div>
            </fieldset>

            {{ form_rest(form) }}
        </form>
{% endblock %}