<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{% endblock %}</title>
{% include 'front/layouts/partials/stylesheets.html.twig' %}
<link rel="stylesheet" href="{{ asset('assets/front/css/connexion.css') }}">
<script id="load-msal" src="https://alcdn.msauth.net/browser/2.31.0/js/msal-browser.js"
integrity="sha384-BO4qQ2RTxj2akCJc7t6IdU9aRg6do4LGIkVVa01Hm33jxM+v2G+4q+vZjmOCywYq"
crossorigin="anonymous"></script>
{% block stylesheets %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
{% include 'front/layouts/partials/javascript.html.twig' %}
{% block javascripts %}{% endblock %}
<script src="{{ asset('assets/front/init/authConfig.js') }}"></script>
<script src="{{ asset('assets/front/init/ui.js') }}"></script>
<script src="{{ asset('assets/front/init/authPopup.js') }}"></script>
</body>
</html>