templates/layouts/auth.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <title>
  7.             {% block title %} Sire | Login {% endblock %}
  8.         </title>
  9.         <!-- Tell the browser to be responsive to screen width -->
  10.         <meta name="viewport" content="width=device-width, initial-scale=1">
  11.         <meta name="description" content="">
  12.         <meta name="author" content="">
  13.         <!-- Favicon icon -->
  14.         <link rel="icon" type="image/svg" href="{{ asset('build/images/favicon.ico') }}">
  15.         {% block stylesheets %}
  16.             {{ encore_entry_link_tags('app') }}
  17.         {% endblock %}
  18.         {% block javascripts %}
  19.             {{ encore_entry_script_tags('app') }}
  20.         {% endblock %}
  21.     </head>
  22.     <body class="skin-default card-no-border auth-layout">
  23.         <div class="client-header">
  24.             <div class="container">
  25.                 <div class="d-flex">
  26.                     <img src="{{ asset('build/images/logo.png') }}" alt="Sire Logo"/>
  27.                 </div>
  28.             </div>
  29.         </div>
  30.         <div class="auth-body">
  31.             {% block body%}
  32.             {% endblock %}
  33.         </div>
  34.         <div class="client-footer">
  35.             <div class="container">
  36.                 <div class="client-footer__wrapper">
  37.                     <div class="client-footer__wrapper__left">
  38.                         <div class="">
  39.                             <a class="email" href="mailto:biuro@sire.lublin.pl">biuro@sire.lublin.pl</a>
  40.                             <span class="ml-lg-3 phone">81 740 65 06</span>
  41.                         </div>
  42.                         <span class="text-left text-sm-left">ALL RIGHTS RESERVED 2022(c)</span>
  43.                     </div>
  44.                     <div class="client-footer__wrapper__center">
  45.                         <div>
  46.                             <a class="social-item" href="#" target="_blank"><i class="fab fa-facebook-f"></i></a>
  47.                             <a class="social-item" href="https://www.youtube.com/channel/UCl5R5B_5AQd8ObGe3DAshAw" target="_blank"><i class="fab fa-youtube"></i></a>
  48.                             <a class="social-item" href="#" target="_blank"><i class="fab fa-instagram"></i></a>
  49.                         </div>
  50.                     </div>
  51.                     <div class="client-footer__wrapper__right">
  52.                         <span class="copy_txt subtitle subtitle--3 text-left text-sm-right d-flex align-items-center justify-content-center justify-content-lg-end">
  53.                         <img src="{{ asset('build/images/mitsBlack.svg') }}" class="mr-2" alt="Strony internetowe Lublin Mits" width="56">
  54.                         -
  55.                         <a title="Strony internetowe Lublin Mits" class="ml-2 link text-underline" href="https://mits.pl/uslugi/strony-internetowe" target="_blank">
  56.                             Strony internetowe Lublin
  57.                         </a>
  58.                     </span>
  59.                     </div>
  60.                 </div>
  61.             </div>
  62.         </div>
  63.     </body>
  64. </html>