getLastAuthenticationError(); $lastUsername = $authenticationUtils->getLastUsername(); return $this->render('security/login.html.twig', [ 'last_username' => $lastUsername, 'error' => $error, ]); } #[Route('/logout', name: 'logout')] public function logout(): void { // controller can be blank: it will never be called! throw new Exception('Don\'t forget to activate logout in security.yaml'); } #[Route('/register', name: 'register')] public function register( Request $request, UserPasswordHasherInterface $userPasswordHasher, EntityManagerInterface $entityManager, Security $security, ): Response { $user = new User(); $form = $this->createForm(RegistrationFormType::class, $user); $form->handleRequest($request); if ($form->isSubmitted() && $form->isValid()) { if ($form->get('plainPassword')->getData() !== $form->get('plainPasswordRepeated')->getData()) { $this->addFlash('error', 'Password and password repeated must be the same'); } else { $user->setPassword( $userPasswordHasher->hashPassword( $user, $form->get('plainPassword')->getData() ) ); $entityManager->persist($user); $entityManager->flush(); // do anything else you need here, like send an email $this->addFlash('success', sprintf('Successfully registered user %s and logged in', $user->getUsername())); $security->login($user, 'remember_me'); return $this->redirectToRoute('user_profile'); } } return $this->render('security/register.html.twig', [ 'registrationForm' => $form->createView(), ]); } }