src/Controller/SecurityController.php line 13

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. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  7. class SecurityController extends AbstractController
  8. {
  9. //    #[Route(path: '/login', name: 'login')]
  10.     #[Route(path'/login0'name'app_login')]
  11.     public function loginOld(AuthenticationUtils $authenticationUtils): Response
  12.     {
  13.     return $this->redirectToRoute('login');
  14.     }
  15.     #[Route(path'/login'name'login')]
  16.     public function login(AuthenticationUtils $authenticationUtils): Response
  17.     {
  18.         // if ($this->getUser()) {
  19.         //     return $this->redirectToRoute('target_path');
  20.         // }
  21.         // get the login error if there is one
  22.         $error $authenticationUtils->getLastAuthenticationError();
  23.         // last username entered by the user
  24.         $lastUsername $authenticationUtils->getLastUsername();
  25.         $pageOptions=json_decode('{"body":{"attributes":{"class":"text-center"}}}',true);
  26.         return $this->render('security/login.html.twig', [
  27.             'last_username' => $lastUsername,
  28.             'error' => $error,
  29.             'page' => $pageOptions
  30.         ]);
  31.     }
  32.     #[Route(path'/logout'name'logout')]
  33.     public function logout()
  34.     {
  35.         throw new \LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.');
  36.     }
  37.     #[Route(path'/logout'name'app_logout')]
  38.     public function logoutOld(AuthenticationUtils $authenticationUtils): Response
  39.     {
  40.         return $this->redirectToRoute('logout');
  41.     }
  42. }