Jump to content

MarkupGoogleRecaptcha not working with LoginRegister module


abdulqayyum
 Share

Recommended Posts

Markup-Google-Recaptcha is not working with LoginRegister module in Forgotton Password Form.

Here is my code
wire-> modules -> process -> ProcessForgotPassword.php

protected function step1_renderForm() {

        $form = $this->modules->get("InputfieldForm");
        $form->attr('action', './?forgot=1');
        $form->attr('method', 'post');
    
        $field = $this->modules->get("InputfieldText");     
        $field->attr('id+name', 'username');
        $field->attr('class', 'redesign-field forgotPassFeild');
        $field->setAttribute('placeholder', 'Username');
        $field->required = true;
        $field->label = $this->_("Forgotton Password");
        $field->description = $this->_("If you cannot remember your password to access the affiliates portal. simply provide your username in the box below and we'll send you a reset link via email.");
        $form->add($field);
         

       // Calling MarkupGoogleRecaptcha Module.
        $captcha = $modules->get("MarkupGoogleRecaptcha");

       //  rendering form with recaptcha
        $captcha->render($form);
   

        $submit = $this->modules->get("InputfieldSubmit");
        $submit->attr('id+name', 'submit_forgot');
        $form->add($submit);

        $this->session->userResetStep = 1;
         
       
// rendering form
         $out .= $form->render();
    

        // getting captcha script
        $out .= $captcha->getScript();

        return $out;
    }


I am following this one example.

image.png.7b1cdeb9c21fd1ebc4b4de02b2c9a5fa.png

please suggest me how i can show MarkupGoogleRecaptcha in forgotton password.

Getting log error

image.thumb.png.8b66148f602491aee74fcb6c51365bf2.png

Thanks,
Abdul Qayyum

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...