templates/base_security.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.0">
  6.     {% block seo %}
  7.         <title>FDMA</title>
  8.         <meta name="description" content="" />
  9.     {% endblock %}
  10.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha512-6MXa8B6uaO18Hid6blRMetEIoPqHf7Ux1tnyIQdpt9qI5OACx7C+O3IVTr98vwGnlcg0LOLa02i9Y1HpVhlfiw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
  11.     <link rel="icon" type="image/ico" href="{{ asset('favicon.ico') }}" />
  12.     <link rel="stylesheet" id="maincss" href="{{ asset('css/bootstrap.css') }}" />
  13.     <link rel="stylesheet" href="{{ asset('vendor/@fortawesome/fontawesome-free/css/fontawesome.css') }}">
  14.     <link rel="stylesheet" href="{{ asset('vendor/animate.css/animate.css') }}">
  15.     <link rel="stylesheet" href="{{ asset('css/style.css') }}" />
  16.     <style type="text/css">
  17.         .sf-toolbarreset{display: none!important;}
  18.     </style>
  19.     {% block my_css %}
  20.     {% endblock %}
  21. </head>
  22. <body class="gray-bg">
  23. <div class="middle-box text-center loginscreen animated fadeInDown">
  24.     <div>
  25.         {% block content %}
  26.         {% endblock %}
  27.     </div>
  28. </div>
  29. <!-- Mainly scripts -->
  30. <script src="{{ asset('vendor/jquery/dist/jquery.js') }}"></script>
  31. <script src="{{ asset('vendor/popper.js/dist/umd/popper.js') }}"></script>
  32. <script src="{{ asset('vendor/bootstrap/dist/js/bootstrap.js') }}"></script>
  33. </body>
  34. </html>