<!DOCTYPE html>
<html class="h-full bg-gray-50">
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/site.webmanifest">
{# Run `composer require symfony/webpack-encore-bundle`
and uncomment the following Encore helpers to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('app-css') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app-js') }}
{% endblock %}
</head>
<body class="overflow-hidden">
<div class="full-height">
<div class="row">
<div class="col-6 bg-flat flex-center">
<div class="text-center">
<img src="{{ asset('images/Logo_Macif.svg')}}" width="128" height="128" />
<h1 class="mt-5 text-white">
ExtraMEG
</h1>
</div>
</div>
<div class="col-6 flex-center">
<div>
{% for label, messages in app.flashes %}
{% for message in messages %}
<div class="flash-{{ label }}">
{{ message }}
</div>
{% endfor %}
{% endfor %}
{% block body %}
{% endblock %}
</div>
</div>
</div>
</div>
</body>
</html>