templates/security.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html class="h-full bg-gray-50">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta name="author" content="Ri7">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7.     <meta name="description" content="">
  8.     <title>{% block title %}Login{% endblock %}</title>
  9.     <link rel="icon"
  10.           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>">
  11.     <link rel="stylesheet" href="https://rsms.me/inter/inter.css">
  12.     <!-- Favicon -->
  13.     <link rel="icon" href="{{ asset('theme/assets/images/brand-logos/favicon.ico') }}" type="image/x-icon">
  14.     <!-- Bootstrap Css -->
  15.     <link id="style" href="{{ asset('theme/assets/libs/bootstrap/css/bootstrap.min.css') }}" rel="stylesheet">
  16.     <!-- Style Css -->
  17.     <link href="{{ asset('theme/assets/css/styles.min.css') }}" rel="stylesheet">
  18.     <!-- Icons Css -->
  19.     <link href=" {{ asset('theme/assets/css/icons.min.css') }}" rel="stylesheet">
  20.     <link href="{{ asset('assets/css/reset-password.css') }}" rel="stylesheet">
  21.     
  22.     {{ encore_entry_link_tags('app') }}
  23.     {% block stylesheets %}{% endblock %}
  24.     {{ encore_entry_script_tags('app') }}
  25.     {% block javascripts %}{% endblock %}
  26.     <!-- Main Theme Js -->
  27.     <script src="{{ asset('theme/assets/js/authentication-main.js') }}"></script>
  28.     <!-- Custom-Switcher JS -->
  29.     <script src="{{ asset('theme/assets/js/custom-switcher.min.js') }}"></script>
  30.     <!-- Bootstrap JS -->
  31.     <script src="{{ asset('theme/assets/libs/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
  32.     <!-- Show Password JS -->
  33.     <script src="{{ asset('theme/assets/js/show-password.js') }}"></script>
  34. </head>
  35. <body class="text-center">
  36. {% block body %}{% endblock %}
  37. </body>
  38. </html>