templates/base.security.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="robots" content="noindex">
  6. <title>{% block title %}Welcome!{% endblock %}</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="icon"
  9. 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>">
  10. {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  11. <link rel="stylesheet" href="{{ asset('css/bootstrap.css') }}">
  12. {% block stylesheets %}
  13. {{ encore_entry_link_tags('app') }}
  14. {% endblock %}
  15. {% block javascripts %}
  16. {{ encore_entry_script_tags('app') }}
  17. {% endblock %}
  18. </head>
  19. <body class="text-center security" data-turbo="false">
  20. <main class="{% block main_class %}form-signin{% endblock main_class %}" >
  21. <img class="mb-4" alt="happy-launcher-logo" src="{{ asset('images/happy-logo.svg') }}" />
  22. {% block body %}{% endblock %}
  23. </main>
  24. </body>
  25. </html>