Browse Source

Ajout des pages d'erreur

Sangfroid 2 months ago
parent
commit
417d00663f

+ 9 - 0
templates/bundles/TwigBundle/Exception/error.html.twig

@@ -0,0 +1,9 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+    <h1>C'est cassé</h1>
+
+    <p>
+        Quelque chose s'est passé par ici. <a href="{{ path('app_index') }}">Retour à l'accueil</a>.
+    </p>
+{% endblock %}

+ 9 - 0
templates/bundles/TwigBundle/Exception/error403.html.twig

@@ -0,0 +1,9 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+    <h1>Erreur 403</h1>
+
+    <p>
+        Non non non non non, vous n'avez pas le droit d'aller par là. <a href="{{ path('app_index') }}">Retour à l'accueil</a>.
+    </p>
+{% endblock %}

+ 9 - 0
templates/bundles/TwigBundle/Exception/error404.html.twig

@@ -0,0 +1,9 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+    <h1>Erreur 404 - Page non trouvée</h1>
+
+    <p>
+        Cette page n'existe pas. <a href="{{ path('app_index') }}">Retour à l'accueil</a>.
+    </p>
+{% endblock %}