You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I recently learned about invisible captchas, and found out that hCaptcha supports them. Implementing it on the embedded form on my website was fairly straightforward and works beautifully! The initial implementation of hCaptcha was clunky, and didn't mesh well with the website design. This option is a lot more seamless.
Describe the solution you'd like
I would love to see an option for invisible captchas in the provided Listmonk embed code (this could be an additional checkbox in the Settings > Security captcha section, or a checkbox in the Form page).
Is your feature request related to a problem? Please describe.
I recently learned about invisible captchas, and found out that hCaptcha supports them. Implementing it on the embedded form on my website was fairly straightforward and works beautifully! The initial implementation of hCaptcha was clunky, and didn't mesh well with the website design. This option is a lot more seamless.
Describe the solution you'd like
I would love to see an option for invisible captchas in the provided Listmonk embed code (this could be an additional checkbox in the Settings > Security captcha section, or a checkbox in the Form page).
To implement it, I had to do the following (bind the challenge to a button):
Add an id to the Listmonk form
Remove the hcaptcha divs: ```html
<script src="https://js.hcaptcha.com/1/api.js" async defer></script> ```Add an
h-captcha
class, anddata-sitekey="your_site_key"
+data-callback="onSubmit"
attributes to the submit button input, like this:Add a data callback and the hCaptcha script:
The final form code looks like this:
The text was updated successfully, but these errors were encountered: