templates/auth/_layout/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}TWIN{% endblock %}</title>
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimal-ui"/>
  7.         <link rel="icon" type="image/png" href="{{ asset('build/images/favicon.svg') }}" />
  8.         <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" />
  9.         {{ encore_entry_link_tags('theme') }}
  10.         {% block stylesheets %}{% endblock %}
  11.     </head>
  12.     <body class="bg-white {{ app.request.attributes.get('_route') }}">
  13.         <div class="d-flex flex-column flex-root">
  14.             <div class="d-flex flex-column flex-lg-row flex-column-fluid">
  15.                 <div class="d-flex flex-column flex-lg-row-auto bg-primary w-lg-600px pt-15 pt-lg-0">
  16.                     <div class="d-flex flex-row-fluid flex-center flex-column-auto flex-column text-center mb-5">
  17.                         <a href="{{ path('customer_project_list') }}" class="mb-6">
  18.                             <img alt="Logo" src="{{ asset('build/images/Twin-white.svg') }}" class="h-50px h-lg-75px"/>
  19.                         </a>
  20.                         <h5 class="text-white-50">La réalité virtuelle au service de votre projet</h5>
  21.                     </div>
  22.                     <div class="d-flex w-100 justify-content-end">
  23.                         <img alt="Logo" src="{{ asset('build/images/login.svg') }}" />
  24.                     </div>
  25.                 </div>
  26.                 <div class="login-content flex-lg-row-fluid d-flex flex-column justify-content-center position-relative overflow-hidden py-10 py-lg-20 px-10 p-lg-7 mx-auto mw-450px w-100">
  27.                     {% block body %}{% endblock %}
  28.                     <div class="d-flex justify-content-lg-start justify-content-center align-items-center py-2 py-lg-7 py-lg-0 fs-5 fw-bolder">
  29.                         <span>
  30.                             © TWIN —
  31.                         Une solution du <a href="https://appolo.fr" target="_blank" rel="nofollow">Groupe Appolo</a>
  32.                         </span>
  33.                     </div>
  34.                 </div>
  35.             </div>
  36.         </div>
  37.         {{ block('flashes', 'shared/_blocks/flashes.html.twig') }}
  38.         {{ encore_entry_script_tags('theme') }}
  39.         {% block javascripts %}{% endblock %}
  40.     </body>
  41. </html>