templates/security/base.html.twig line 1

  1. <!doctype html>
  2. <html lang="pl" class="h-100">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1">
  6.         <title>{{ app_title }}</title>
  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="d-flex flex-column h-100 bg-light" turbo-frame="false">
  16.         <div class="container-fluid h-100">
  17.             <div class="row h-100">
  18.                 <div class="col-lg-4 offset-lg-4 col-md-6 offset-md-3 pt-5 h-100 d-flex flex-column">
  19.                     <div class="card">
  20.                         <div class="card-body text-center my-5">
  21.                             <img src="{{ asset('/images/logodm.png') }}" width=200>
  22.                             {% block body %}
  23.                                 
  24.                             {% endblock %}
  25.                         </div>
  26.                     </div>
  27.                     
  28.                     {# <footer class="footer mt-auto">
  29.                             <span class="text-muted" style="font-size: 0.75rem;">
  30.                                 <i class="bi bi-git"></i> {{ app_repo }}, <strong>Copyright © 2022 SPES</strong>
  31.                             </span>
  32.                     </footer> #}
  33.                 </div>
  34.                 
  35.             </div>
  36.             
  37.         </div>
  38.     </body>
  39. </html>
  40.