aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/UserBundle/Resources/views/themes/baggy/Resetting/request.html.twig
blob: 10094e836084cb8b01195860353c7bdb329e9454 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "WallabagCoreBundle::layout.html.twig" %}

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

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

{% block menu %}{% endblock %}
{% block messages %}{% endblock %}

{% block content %}
        <form action="{{ path('fos_user_resetting_send_email') }}" method="post" name="forgotPasswordform">
            <fieldset class="w500p center">
                <h2 class="mbs txtcenter">{% trans %}Forgot password{% endtrans %}</h2>
                {% include "FOSUserBundle:Resetting:request_content.html.twig" %}
            </fieldset>
        </form>
{% endblock %}

{% block footer %}
{% endblock %}