templates/front/layouts/authentication_layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1">
  6.         <title>{% block title %}{% endblock %}</title>
  7.         {% include 'front/layouts/partials/stylesheets.html.twig' %}
  8.         <link rel="stylesheet" href="{{ asset('assets/front/css/connexion.css') }}">
  9.          <script id="load-msal" src="https://alcdn.msauth.net/browser/2.31.0/js/msal-browser.js"
  10.         integrity="sha384-BO4qQ2RTxj2akCJc7t6IdU9aRg6do4LGIkVVa01Hm33jxM+v2G+4q+vZjmOCywYq"
  11.         crossorigin="anonymous"></script>
  12.         {% block stylesheets %}{% endblock %}
  13.     </head>
  14.     <body>
  15.         {% block body %}{% endblock %}
  16.         {% include 'front/layouts/partials/javascript.html.twig' %}
  17.         
  18.         {% block javascripts %}{% endblock %}
  19.         <script src="{{ asset('assets/front/init/authConfig.js') }}"></script>
  20.         <script src="{{ asset('assets/front/init/ui.js') }}"></script>
  21.         <script src="{{ asset('assets/front/init/authPopup.js') }}"></script>
  22.     </body>
  23. </html>