templates/base_auth.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2.  <html class="h-full bg-gray-50">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Welcome!{% endblock %}</title>
  6.         <link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
  7.         <link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
  8.         <link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
  9.         <link rel="manifest" href="/favicon/site.webmanifest">
  10.         {# Run `composer require symfony/webpack-encore-bundle`
  11.            and uncomment the following Encore helpers to start using Symfony UX #}
  12.         {% block stylesheets %}
  13.             {{ encore_entry_link_tags('app-css') }}
  14.         {% endblock %}
  15.         {% block javascripts %}
  16.             {{ encore_entry_script_tags('app-js') }}
  17.         {% endblock %}
  18.     </head>
  19.     <body class="overflow-hidden">
  20.         <div class="full-height">
  21.             <div class="row">
  22.                 <div class="col-6 bg-flat flex-center">
  23.                     <div class="text-center">
  24.                         
  25.                             <img src="{{ asset('images/Logo_Macif.svg')}}"  width="128"  height="128" />
  26.                         
  27.                         <h1 class="mt-5 text-white">
  28.                             ExtraMEG
  29.                         </h1>
  30.                     </div>
  31.                 </div>
  32.                 <div class="col-6 flex-center">
  33.                     <div>
  34.                         {% for label, messages in app.flashes %}
  35.                             {% for message in messages %}
  36.                                 <div class="flash-{{ label }}">
  37.                                     {{ message }}
  38.                                 </div>
  39.                             {% endfor %}
  40.                         {% endfor %}
  41.                         {% block body %}
  42.                         {% endblock %}
  43.                     </div>
  44.                 </div>
  45.             </div>
  46.         </div>
  47.     </body>
  48. </html>