templates/userForm/error404.html.twig line 1
{% extends 'base.html.twig' %}
{% block title %}Error 404
{% endblock %}
{% block body %}
<div style="display: flex; justify-content: center;">
<a href="{{ path('home') }}">
<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">
La page que vous cherchez n'existe pas.
</h1>
</a>
</div>
{% endblock %}