templates/userForm/error404.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Error 404
  3. {% endblock %}
  4. {% block body %}
  5.     <div style="display: flex; justify-content: center;">
  6.         <a href="{{ path('home') }}">
  7.             <h1 style="background-color: #ffcc00" class=" text-lg text-black bg-gray-300 focus:ring-4 focus:outline-none focus:ring-gray-300 font-medium rounded-full text-sm px-5 py-2.5 text-center mr-3 md:mr-0 hidden md:hidden lg:inline-block xl:inline-block">
  8.                 La page que vous cherchez n'existe pas.
  9.             </h1>
  10.         </a>
  11.     </div>
  12. {% endblock %}