<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
use Symfony\Contracts\Translation\TranslatorInterface;
class SecurityController extends AbstractController
{
public function login(AuthenticationUtils $authenticationUtils, TranslatorInterface $translator): Response
{
// get the login error if there is one
$error = $authenticationUtils->getLastAuthenticationError();
// last username entered by the user
$lastUsername = $authenticationUtils->getLastUsername();
return $this->render('security/login.html.twig', [
'error' => $error,
'last_username' => $lastUsername,
'translation_domain' => 'admin',
'page_title' => $translator->trans('pages.login.page_title'),
'csrf_token_intention' => 'authenticate',
'target_path' => $this->generateUrl('dashboard'),
'username_label' => $translator->trans('pages.login.username_label'),
'password_label' => $translator->trans('pages.login.password_label'),
'sign_in_label' => $translator->trans('pages.login.sign_in_label'),
'username_parameter' => 'username',
'password_parameter' => 'password',
]);
}
public function logout()
{
throw new \LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.');
}
}