I've added in back office recaptchav3.
in appsettings.json I've added the necessary keys and made sure they are configured to 'localhost'. I'm sending the token from the client side, the problem is on the server side. I'm receiving all the fields from the form in this function
if the recaptchav3 is present in the form, 'model.SubmitHandled' is true always. if the recaptcha v3 is present, 'model.SubmitHandled' is always false. what have I done wrong? Am I missing a step in the way?
Recaptcha v3 validation
I've added in back office recaptchav3. in appsettings.json I've added the necessary keys and made sure they are configured to 'localhost'. I'm sending the token from the client side, the problem is on the server side. I'm receiving all the fields from the form in this function
' protected async override void OnFormHandled(Form form, FormViewModel model) { base.OnFormHandled(form, model); }'.
if the recaptchav3 is present in the form, 'model.SubmitHandled' is true always. if the recaptcha v3 is present, 'model.SubmitHandled' is always false. what have I done wrong? Am I missing a step in the way?
is working on a reply...