"use strict";
jQuery(window).on('load', function(){
grecaptcha.ready(function(){
var uapCaptchaKey=jQuery('.uap-js-register-captcha-key').attr('data-value');
grecaptcha.execute(uapCaptchaKey, { action: 'homepage' }).then(function(token){
jQuery('.js-uap-recaptcha-v3-item').html('<input type="hidden" name="g-recaptcha-response" value="' + token + '">');
});
});
});