templates/security/base-login.html.twig line 1

Open in your IDE?
  1. {# This is a template used internally by EasyAdmin. Don't use it
  2.    directly in your applications. Instead, use the 'login.html.twig' template #}
  3. {% trans_default_domain translation_domain ?? 'messages' %}
  4. <!DOCTYPE html>
  5. <html>
  6.     <head>
  7.         <meta charset="utf-8">
  8.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  9.         <meta name="robots" content="noindex, nofollow, noarchive, nosnippet, noodp, noimageindex, notranslate, nocache" />
  10.         <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  11.         {% block head_favicon %}
  12.             <link rel="shortcut icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⬛</text></svg>">
  13.         {% endblock %}
  14.         <title>{{ block('page_title')|striptags|raw }}</title>
  15.         {% block head_stylesheets %}
  16.             <link rel="stylesheet" href="{{ asset('app.css', constant('EasyCorp\\Bundle\\EasyAdminBundle\\Asset\\AssetPackage::PACKAGE_NAME')) }}">
  17.             {{ encore_entry_link_tags('base') }}
  18.             {{ encore_entry_link_tags('login') }}
  19.         {% endblock %}
  20.         {% block head_javascript %}
  21.             <script src="{{ asset('app.js', constant('EasyCorp\\Bundle\\EasyAdminBundle\\Asset\\AssetPackage::PACKAGE_NAME')) }}"></script>
  22.         {% endblock head_javascript %}
  23.     </head>
  24.     {# {% block body_class %}{% endblock %} #}
  25.     <body id="{% block body_id %}{% endblock %}" class="ea">
  26.         {% block wrapper_wrapper %}{% endblock wrapper_wrapper %}
  27.     </body>
  28. </html>