src/Controller/SecurityController.php line 15

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\Security\Http\Authentication\AuthenticationUtils;
  6. use Symfony\Contracts\Translation\TranslatorInterface;
  7. class SecurityController extends AbstractController
  8. {
  9.     public function login(AuthenticationUtils $authenticationUtilsTranslatorInterface $translator): Response
  10.     {
  11.         // get the login error if there is one
  12.         $error $authenticationUtils->getLastAuthenticationError();
  13.         // last username entered by the user
  14.         $lastUsername $authenticationUtils->getLastUsername();
  15.         return $this->render('security/login.html.twig', [
  16.             'error' => $error,
  17.             'last_username' => $lastUsername,
  18.             'translation_domain' => 'admin',
  19.             'page_title' => $translator->trans('pages.login.page_title'),
  20.             'csrf_token_intention' => 'authenticate',
  21.             'target_path' => $this->generateUrl('dashboard'),
  22.             'username_label' => $translator->trans('pages.login.username_label'),
  23.             'password_label' => $translator->trans('pages.login.password_label'),
  24.             'sign_in_label' => $translator->trans('pages.login.sign_in_label'),
  25.             'username_parameter' => 'username',
  26.             'password_parameter' => 'password',
  27.         ]);
  28.     }
  29.     public function logout()
  30.     {
  31.         throw new \LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.');
  32.     }
  33. }