templates/security/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, shrink-to-fit=no">
  6.     <meta name="description" content="{{ 'apps.description'|trans }}">
  7.     <title>{{ 'apps.name'|trans }} </title>
  8.     <link rel="shortcut icon" href="{{ absolute_url('uploads/assets/img/favicon.ico') }}">
  9.     {{ encore_entry_link_tags('app') }}
  10.     {% block stylesheets %}
  11.         <style>
  12.             .bd-placeholder-img {
  13.                 font-size: 1.125rem;
  14.                 text-anchor: middle;
  15.                 -webkit-user-select: none;
  16.                 -moz-user-select: none;
  17.                 -ms-user-select: none;
  18.                 user-select: none;
  19.             }
  20.             @media (min-width: 768px) {
  21.                 .bd-placeholder-img-lg {
  22.                     font-size: 3.5rem;
  23.                 }
  24.             }
  25.         </style>
  26.         {{ encore_entry_link_tags('login') }}
  27.     {% endblock %}
  28. </head>
  29. <body class="text-center">
  30. {% block body %}{% endblock %}
  31. </body>
  32. </html>