templates/Security/reset_password/request.html.twig line 1

Open in your IDE?
  1. {% extends 'Layout/security.html.twig' %}
  2. {% set mainTitleLabel = 'Mot de passe oublié ?' %}
  3. {% block title %}{{ mainTitleLabel }}{% endblock %}
  4. {% block body %}
  5.     {% include 'components/BigTitle/index.twig' with {
  6.         titleLabel: mainTitleLabel,
  7.         titleLevelCSS: "3",
  8.         titleLevelSEO: "1",
  9.     } %}
  10.     <p class="text">Veuillez entrer votre numéro de client.</p>
  11.     {{ form_start(form) }}
  12.         {% include 'components/Form/Input/index.twig' with {
  13.             name: form.codeClient.vars.full_name,
  14.             id: form.codeClient.vars.id,
  15.             label: form.codeClient.vars.label,
  16.             autocomplete: 'username',
  17.         } only %}
  18.         {{ form_widget(form._token) }}
  19.         <button type="submit" class="button black-background">Valider</button>
  20.     {{ form_end(form, {'render_rest': false}) }}
  21. {% endblock %}