<?php
namespace App\Controller\Affiliate;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
/**
* @Route("/affiliate")
*/
class LoginController extends AbstractController {
/**
* @Route("/login", name="affiliate_login")
*/
public function index(AuthenticationUtils $authenticationUtils): Response {
// get the login error if there is one
$error = $authenticationUtils->getLastAuthenticationError();
// last username entered by the user
$lastUsername = $authenticationUtils->getLastUsername();
return $this->render('/affiliate/login/index.html.twig', [
'last_username' => $lastUsername,
'error' => $error,
]);
}
}