@@ -0,0 +1,14 @@
+<?php
+
+namespace App\Controller;
+use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
+class ErrorController extends AbstractController
+{
+ public function indexAction() {
+ return $this->render('errors/404.html.twig');
+ }
+}
@@ -0,0 +1,7 @@
+{% extends "base.html.twig" %}
+{% block title %}{{ parent() }} - Ajouter un genre{% endblock %}
+{% block titre %}Erreur 404{% endblock %}
+{% block body %}
+ <p>La page demandée n'existe pas, il faut aller voir ailleurs.</p>
+{% endblock %}