]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/UserBundle/Resources/views/themes/baggy/Resetting/request.html.twig
Disable translation in test
[github/wallabag/wallabag.git] / src / Wallabag / UserBundle / Resources / views / themes / baggy / Resetting / request.html.twig
1 {% extends "WallabagCoreBundle::layout.html.twig" %}
2
3 {% block title %}{% trans %}Forgot password{% endtrans %}{% endblock %}
4
5 {% block body_class %}login{% endblock %}
6
7 {% block menu %}{% endblock %}
8 {% block messages %}{% endblock %}
9
10 {% block content %}
11 <form action="{{ path('fos_user_resetting_send_email') }}" method="post" name="forgotPasswordform">
12 <fieldset class="w500p center">
13 <h2 class="mbs txtcenter">{% trans %}Forgot password{% endtrans %}</h2>
14 {% include "FOSUserBundle:Resetting:request_content.html.twig" %}
15 </fieldset>
16 </form>
17 {% endblock %}
18
19 {% block footer %}
20 {% endblock %}