src/Platform/Resources/views/templates/auth.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html class="h-full">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Welcome!{% endblock %}</title>
  6.         <link rel="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>">
  7.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  8.         {% block stylesheets %}
  9.             {{ encore_entry_link_tags('app') }}
  10.         {% endblock %}
  11.         {% block javascripts %}
  12.             {{ encore_entry_script_tags('app') }}
  13.         {% endblock %}
  14.     </head>
  15.     <body class="antialiased h-full bg-page-background font-roboto text-black">
  16.         <div class="h-full flex justify-center items-center flex-col">
  17.             <img src="{{ asset('build/images/logo.svg') }}" alt="logo" class="mb-4">
  18.             <div class="bg-white rounded-lg px-10 py-8 mb-6 auth-modal">
  19.                 {% block body %}{% endblock %}
  20.             </div>
  21.         </div>
  22.     </body>
  23. </html>