templates/base_security.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale }}">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}{{ app_title }}{% endblock %}</title>
  6.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  7.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  8.         {% block stylesheets %}
  9.             {{ encore_entry_link_tags('app') }}
  10.         {% endblock %}
  11.         {% block javascripts %}
  12.             {{ encore_entry_script_tags('app') }}
  13.         {% endblock %}
  14.     </head>
  15.     <body class="hold-transition login-page">
  16.     <div class="container-fluid">
  17.         {% block content %}
  18.             <div class="row min-vh-100">
  19.                 <div class="login-left col-lg-9">
  20.                     {% block leftSide %}
  21.                     {% endblock %}
  22.                 </div>
  23.                 <div class="login-right col-lg-3">
  24.                     {% block rightSide %}
  25.                         {{ include('partials/_flashes.html.twig') }}
  26.                         <p class="login-title">{{ "general.login_title"|trans  }}</p>
  27.                          {% block rightSideContent %}
  28.                          {% endblock %}
  29.                         <div class="col-12 mt-auto">
  30.                             <img class="bottom-img" src="{{ asset('build/images/logo_godo.png') }}">
  31.                         </div>
  32.                     {% endblock %}
  33.                 </div>
  34.             </div>
  35.         {% endblock %}
  36.     </div>
  37.     </body>
  38. </html>