set front

This commit is contained in:
jleroy2023
2024-11-18 14:41:52 +01:00
parent 9bdde39dde
commit 8f75b8a125
30 changed files with 2650 additions and 18 deletions

View File

@@ -0,0 +1,19 @@
{% extends 'base.html.twig' %}
{% block body %}
<section class="flex items-center h-full p-16 dark:bg-gray-900 dark:text-gray-100">
<div class="container flex flex-col items-center justify-center px-5 mx-auto my-8">
<div class="max-w-md text-center">
<h2 class="mb-8 font-extrabold text-9xl dark:text-gray-600">
😭
</h2>
<p class="text-2xl font-semibold md:text-3xl"><span class="font-bold">Oups !</span> Tu sembles perdu 🥲
</p>
<p class="mt-4 mb-8 dark:text-gray-400">{{ exception.message }}</p>
<a rel="noopener noreferrer" href="{{ path('home_index') }}"
class="px-8 py-3 font-semibold rounded dark:bg-violet-400 dark:text-gray-900">Retour à la page
d'accueil</a>
</div>
</div>
</section>
{% endblock %}

View File

@@ -0,0 +1,21 @@
{% extends 'base.html.twig' %}
{% block body %}
<section class="flex items-center h-full p-16 dark:bg-gray-900 dark:text-gray-100">
<div class="container flex flex-col items-center justify-center px-5 mx-auto my-8">
<div class="max-w-md text-center">
<h2 class="mb-8 font-extrabold text-9xl dark:text-gray-600">
403
</h2>
<p class="text-2xl font-semibold md:text-3xl"><span class="font-bold">Oups !</span> Tu sembles perdu 🥲
</p>
<p class="mt-4 mb-8 dark:text-gray-400">
Vous n'avez pas les droits nécessaires pour accéder à cette page.
</p>
<a rel="noopener noreferrer" href="{{ path('home_index') }}"
class="px-8 py-3 font-semibold rounded dark:bg-violet-400 dark:text-gray-900">Retour à la page
d'accueil</a>
</div>
</div>
</section>
{% endblock %}

View File

@@ -0,0 +1,21 @@
{% extends 'base.html.twig' %}
{% block body %}
<section class="flex items-center h-full p-16 dark:bg-gray-900 dark:text-gray-100">
<div class="container flex flex-col items-center justify-center px-5 mx-auto my-8">
<div class="max-w-md text-center">
<h2 class="mb-8 font-extrabold text-9xl dark:text-gray-600">
404
</h2>
<p class="text-2xl font-semibold md:text-3xl"><span class="font-bold">Oups !</span> Tu sembles perdu 🥲
</p>
<p class="mt-4 mb-8 dark:text-gray-400">
Cette page n'existe pas !
</p>
<a rel="noopener noreferrer" href="{{ path('home_index') }}"
class="px-8 py-3 font-semibold rounded dark:bg-violet-400 dark:text-gray-900">Retour à la page
d'accueil</a>
</div>
</div>
</section>
{% endblock %}