TimothyMeadows / reCAPTCHA.AspNetCore

Google reCAPTCHA v2/v3 for .NET Core 3.x

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How do we change the action value.

opened this issue · comments

Hi
How to change the Action attribute from 'homepage'.?

if (typeof grecaptcha !== 'undefined') {
	grecaptcha.ready(function () {
		grecaptcha.execute('fbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbf', { 'action': 'homepage' }).then(function (token) {
			document.getElementById('g-recaptcha-response').value = token;
		});
	});
}

You shouldn't be using script but rather the helper as shown below.

@(Html.Recaptcha<RecaptchaV3HiddenInput>(RecaptchaSettings?.Value, new RecaptchaV3HiddenInput { Action = "Homepage" }))