src/Controller/HomeController.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class HomeController extends AbstractController
  7. {
  8.     #[Route(path'/landing-flashcode'name'landing-flash-code')]
  9.     public function landingPage(): Response
  10.     {
  11.         return $this->render('landing-flash-code.html.twig');
  12.     }
  13.     #[Route(path'/cgu'name'cgu')]
  14.     public function cgu(): Response
  15.     {
  16.         return $this->render('Cgu/index.html.twig');
  17.     }
  18. }