src/Controller/SecurityController.php line 28
<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;class SecurityController extends AbstractController{#[Route(path: '/login', name: 'app_login')]public function login(AuthenticationUtils $authenticationUtils): Response{if ($this->getUser()) {return $this->redirectToRoute('app_dashboard');}// get the login error if there is one$error = $authenticationUtils->getLastAuthenticationError();// last username entered by the user$lastUsername = $authenticationUtils->getLastUsername();return $this->render('dashboard/login.html.twig', ['last_username' => $lastUsername, 'error' => $error]);}#[Route(path: '/', name: 'app_login_2')]public function login2(): Response{return $this->redirectToRoute('politique_confidentialite');}#[Route(path: '/politique-de-confidentialite', name: 'politique_confidentialite')]public function confidentialite(): Response{return $this->render('security/politique_de_confidentialite.html.twig');}#[Route(path: '/condition-generale-utilisation', name: 'condition_generale_utilisation')]public function conditionUtilisation(): Response{return $this->render('security/condition_generale_utilisation.html.twig');}#[Route(path: '/mention-legale', name: 'mention_legale')]public function mentionLegale(): Response{return $this->render('security/mention_legale.html.twig');}#[Route(path: '/logout', name: 'app_logout')]public function logout(): void{throw new \LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.');}}