Notice: Undefined variable: namespace in /home2/cul61597/public_html/rendiciones/vendor/symfony/maker-bundle/src/Resources/skeleton/resetPassword/ResetPasswordController.tpl.php on line 3
;
Notice: Undefined variable: use_statements in /home2/cul61597/public_html/rendiciones/vendor/symfony/maker-bundle/src/Resources/skeleton/resetPassword/ResetPasswordController.tpl.php on line 5

Notice: Undefined variable: use_attributes in /home2/cul61597/public_html/rendiciones/vendor/symfony/maker-bundle/src/Resources/skeleton/resetPassword/ResetPasswordController.tpl.php on line 7
/** * @Route("/reset-password") */ class
Notice: Undefined variable: class_name in /home2/cul61597/public_html/rendiciones/vendor/symfony/maker-bundle/src/Resources/skeleton/resetPassword/ResetPasswordController.tpl.php on line 14
extends AbstractController { use ResetPasswordControllerTrait; private $resetPasswordHelper; public function __construct(ResetPasswordHelperInterface $resetPasswordHelper) { $this->resetPasswordHelper = $resetPasswordHelper; } /** * Display & process form to request a password reset.
Notice: Undefined variable: use_attributes in /home2/cul61597/public_html/rendiciones/vendor/symfony/maker-bundle/src/Resources/skeleton/resetPassword/ResetPasswordController.tpl.php on line 27
* * @Route("", name="app_forgot_password_request") */ public function request(Request $request, MailerInterface $mailer): Response { $form = $this->createForm(
Notice: Undefined variable: request_form_type_class_name in /home2/cul61597/public_html/rendiciones/vendor/symfony/maker-bundle/src/Resources/skeleton/resetPassword/ResetPasswordController.tpl.php on line 37
::class); $form->handleRequest($request); if ($form->isSubmitted() && $form->isValid()) { return $this->processSendingPasswordResetEmail( $form->get('
Notice: Undefined variable: email_field in /home2/cul61597/public_html/rendiciones/vendor/symfony/maker-bundle/src/Resources/skeleton/resetPassword/ResetPasswordController.tpl.php on line 42
')->getData(), $mailer ); } return $this->render('reset_password/request.html.twig', [ 'requestForm' => $form->createView(), ]); } /** * Confirmation page after a user has requested a password reset.
Notice: Undefined variable: use_attributes in /home2/cul61597/public_html/rendiciones/vendor/symfony/maker-bundle/src/Resources/skeleton/resetPassword/ResetPasswordController.tpl.php on line 54
* * @Route("/check-email", name="app_check_email") */ public function checkEmail(): Response { // Generate a fake token if the user does not exist or someone hit this page directly. // This prevents exposing whether or not a user was found with the given email address or not if (null === ($resetToken = $this->getTokenObjectFromSession())) { $resetToken = $this->resetPasswordHelper->generateFakeResetToken(); } return $this->render('reset_password/check_email.html.twig', [ 'resetToken' => $resetToken, ]); } /** * Validates and process the reset URL that the user clicked in their email.
Notice: Undefined variable: use_attributes in /home2/cul61597/public_html/rendiciones/vendor/symfony/maker-bundle/src/Resources/skeleton/resetPassword/ResetPasswordController.tpl.php on line 77
* * @Route("/reset/{token}", name="app_reset_password") */ public function reset(Request $request,
Notice: Undefined variable: password_class_details in /home2/cul61597/public_html/rendiciones/vendor/symfony/maker-bundle/src/Resources/skeleton/resetPassword/ResetPasswordController.tpl.php on line 85

Fatal error: Uncaught Error: Call to a member function getShortName() on null in /home2/cul61597/public_html/rendiciones/vendor/symfony/maker-bundle/src/Resources/skeleton/resetPassword/ResetPasswordController.tpl.php:85 Stack trace: #0 {main} thrown in /home2/cul61597/public_html/rendiciones/vendor/symfony/maker-bundle/src/Resources/skeleton/resetPassword/ResetPasswordController.tpl.php on line 85