templates/Security/layout.html.twig line 1

Open in your IDE?
  1. {% extends 'layout.html.twig' %}
  2. {% block main %}
  3.     <div id="flash-message-container">
  4.         {% block flashMessage %}{% endblock %}
  5.     </div>
  6.     <div class="block-grid">
  7.         <div class="login-left">
  8.             {% include 'components/Spacer/index.html.twig' with {
  9.                 height: 40
  10.             } %}
  11.             <img src="{{ asset('assets/images/logo/logo.png') }}" srcset="{{ asset('assets/images/logo/logo-2x.png') }} 2x" alt="Logo OPAC GDTI">
  12.             {% include 'components/Spacer/index.html.twig' with {
  13.                 height: spacerL
  14.             } %}
  15.             {% include 'components/Font/Title/index.html.twig' with {
  16.                 titleLevelSEO: '1',
  17.                 titleLevelCSS: '1',
  18.                 titleLabel : title
  19.             } %}
  20.             {% include 'components/Spacer/index.html.twig' with {
  21.                 height: spacerM
  22.             } %}
  23.             <div class="block-form global-padding">
  24.                 <div class="column">
  25.                     {% block form %}{% endblock %}
  26.                 </div>
  27.             </div>
  28.             {% include 'components/Link/index.html.twig' with {
  29.                 linkLabel: 'Mentions légales',
  30.                 linkURL: '#',
  31.                 linkClassName: 'link-footer text-tiny'
  32.             } %}
  33.         </div>
  34.         <div class="login-photo flex-1">
  35.         </div>
  36.     </div>
  37. {% endblock %}