You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
528 B
16 lines
528 B
export async function initMcaptcha() {
|
|
const mCaptchaEl = document.querySelector('.m-captcha');
|
|
if (!mCaptchaEl) return;
|
|
|
|
const {default: mCaptcha} = await import(/* webpackChunkName: "mcaptcha-vanilla-glue" */'@mcaptcha/vanilla-glue');
|
|
mCaptcha.INPUT_NAME = 'm-captcha-response';
|
|
const siteKey = mCaptchaEl.getAttribute('data-sitekey');
|
|
const instanceURL = mCaptchaEl.getAttribute('data-instance-url');
|
|
|
|
mCaptcha.default({
|
|
siteKey: {
|
|
instanceUrl: new URL(instanceURL),
|
|
key: siteKey,
|
|
}
|
|
});
|
|
}
|
|
|