templates/bundles/FOSUserBundle/Resetting/request.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% import 'app/_inc/macros.html.twig' as m %}
  3. {% block css %}
  4.     {{ encore_entry_link_tags('app-space-css') }}
  5. {% endblock %}
  6. {% block header %}
  7. {% endblock %}
  8. {% block content %}
  9.     <div id="page" class="space connection">
  10.         <div class="bg wood">
  11.             {{ m.img(asset('img/fond-table.png')) }}
  12.         </div>
  13.         <section class="header ct">
  14.             <a href="{{ path('fos_user_profile_show') }}" class="btn-icon" title="{{ 'all.backh'|trans }}">{{ m.svg('icon/arrow-left') }}</a>
  15.             <a href="{{ path('homepage') }}" class="btn-icon" title="{{ 'all.backh'|trans }}">{{ m.svg('icon/home', 'all.backh') }}</a>
  16.         </section>
  17.         <section>
  18.             <div data-a-up class="title ct">
  19.                 <h2 class="h3">{{ 'Forgot your password?'|trans|raw }}</h2>
  20.                 {{ m.Breadcrumb('Forgot your password?', {link:{
  21.                     0:['Forgot your password?']
  22.                 }}) }}
  23.             </div>
  24.             <div class="bloc_form">
  25.                 <form id="request" action="{{ path('fos_user_resetting_send_email') }}" method="POST" class="form key">
  26.                     <fieldset class="first-focus valid">
  27.                         <label for="username">{{ 'resetting.request.username'|trans({},'FOSUserBundle') }}</label>
  28.                         <input type="text" id="username" name="username" required>
  29.                     </fieldset>
  30.                     <div class="group_btn_bottom">
  31.                         {{ m.btn('', 'all.send'|trans({},'FOSUserBundle'), 'btn', {class:'btn', name:'_submit'}) }}
  32.                     </div>
  33.                 </form>
  34.             </div>
  35.         </section>
  36.     </div>
  37. {% endblock %}