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\Routing\Annotation\Route;
  6. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  7. class SecurityController extends AbstractController
  8. {
  9.     /**
  10.      * @Route("/login", name="app_login")
  11.      */
  12.     public function login(AuthenticationUtils $authenticationUtils): Response
  13.     {
  14.         // if ($this->getUser()) {
  15.         //     return $this->redirectToRoute('target_path');
  16.         // }
  17.         $error $authenticationUtils->getLastAuthenticationError();
  18.         $lastUsername $authenticationUtils->getLastUsername();
  19.         return $this->render('@EasyAdmin/page/login.html.twig', [
  20.             // parameters usually defined in Symfony login forms
  21.             'error' => $error,
  22.             'last_username' => $lastUsername,
  23.             // OPTIONAL parameters to customize the login form:
  24.             // the translation_domain to use (define this option only if you are
  25.             // rendering the login template in a regular Symfony controller; when
  26.             // rendering it from an EasyAdmin Dashboard this is automatically set to
  27.             // the same domain as the rest of the Dashboard)
  28.             'translation_domain' => 'admin',
  29.             // the title visible above the login form (define this option only if you are
  30.             // rendering the login template in a regular Symfony controller; when rendering
  31.             // it from an EasyAdmin Dashboard this is automatically set as the Dashboard title)
  32.             'page_title' => '<h1>Merely Cargo</h1>',
  33.             // the string used to generate the CSRF token. If you don't define
  34.             // this parameter, the login form won't include a CSRF token
  35.             'csrf_token_intention' => 'authenticate',
  36.             // the URL users are redirected to after the login (default: '/admin')
  37.             'target_path' => $this->generateUrl('admin'),
  38.             // the label displayed for the username form field (the |trans filter is applied to it)
  39.             'username_label' => 'Usuario',
  40.             // the label displayed for the password form field (the |trans filter is applied to it)
  41.             'password_label' => 'ContraseƱa',
  42.             // the label displayed for the Sign In form button (the |trans filter is applied to it)
  43.             'sign_in_label' => 'Acceder'
  44.         ]);
  45.     }
  46.     /**
  47.      * @Route("/logout", name="app_logout")
  48.      */
  49.     public function logout(): void
  50.     {
  51.         throw new \LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.');
  52.     }
  53. }