Git Product home page Git Product logo

Comments (3)

jylep avatar jylep commented on July 22, 2024 3

For people seeking help:

Invisible reCaptcha just need a callback js function that kicks off the form submission:

On whatever page you need an invisible reCaptcha

    {% put scripts %}
        <script type="text/javascript">
            var onSubmit = function(token) {
                jQuery('{{ __SELF__ }}').submit();
            };
        </script>
    {% endput %}
    {% component "ExtendedGenericForm" %}

Now invisible reCaptcha trigger goes on your form submit button

<button 
    id="{{ __SELF__ }}"
    data-callback="onSubmit"
    class="g-recaptcha"
    type="submit"
    data-sitekey="{{ __SELF__.settings.recaptcha_site_key }}"
    data-size="invisible">
</button>

Remember that {{ __SELF__ }} refers to either the component name or it's alias if defined.

You don't need to do anything else, the plugin will do the reset for you and validate the captcha.

It's also a very good idea to check on the documentation page : invisible reCAPTCHA v2

I don't have time to make a PR but hopefully this will help.

from october-plugin-forms.

mpetricek avatar mpetricek commented on July 22, 2024

Thank you for this! I wasn't able to make it work with jQuery('{{ __SELF__ }}').submit(); though.

I had to use jQuery('#myAwesomeForm').submit(); instead.

from october-plugin-forms.

mpetricek avatar mpetricek commented on July 22, 2024

I'm trying to solve problem with default browser HTML5 validation. It won't validate before form submission. Does anybody have a solution for that? I think that whole recaptcha should be on separate div and not on "button" element. Seems like the execution of ReCaptcha is bound to button element.

from october-plugin-forms.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.