templates/layouts/auth.html.twig line 1
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>
{% block title %} Sire | Login {% endblock %}
</title>
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<!-- Favicon icon -->
<link rel="icon" type="image/svg" href="{{ asset('build/images/favicon.ico') }}">
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body class="skin-default card-no-border auth-layout">
<div class="client-header">
<div class="container">
<div class="d-flex">
<img src="{{ asset('build/images/logo.png') }}" alt="Sire Logo"/>
</div>
</div>
</div>
<div class="auth-body">
{% block body%}
{% endblock %}
</div>
<div class="client-footer">
<div class="container">
<div class="client-footer__wrapper">
<div class="client-footer__wrapper__left">
<div class="">
<a class="email" href="mailto:biuro@sire.lublin.pl">biuro@sire.lublin.pl</a>
<span class="ml-lg-3 phone">81 740 65 06</span>
</div>
<span class="text-left text-sm-left">ALL RIGHTS RESERVED 2022(c)</span>
</div>
<div class="client-footer__wrapper__center">
<div>
<a class="social-item" href="#" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a class="social-item" href="https://www.youtube.com/channel/UCl5R5B_5AQd8ObGe3DAshAw" target="_blank"><i class="fab fa-youtube"></i></a>
<a class="social-item" href="#" target="_blank"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="client-footer__wrapper__right">
<span class="copy_txt subtitle subtitle--3 text-left text-sm-right d-flex align-items-center justify-content-center justify-content-lg-end">
<img src="{{ asset('build/images/mitsBlack.svg') }}" class="mr-2" alt="Strony internetowe Lublin Mits" width="56">
-
<a title="Strony internetowe Lublin Mits" class="ml-2 link text-underline" href="https://mits.pl/uslugi/strony-internetowe" target="_blank">
Strony internetowe Lublin
</a>
</span>
</div>
</div>
</div>
</div>
</body>
</html>