PATH:
home
/
lab2454c
/
caimegroup.com
/
wp-content
/
plugins
/
user-registration
/
assets
/
js
/
frontend
/* global ur_recaptcha_code */ /* global grecaptcha */ /* global user_registration_params */ (function ($) { var ursL10n = user_registration_params.ursL10n; var user_registration_recaptcha_init = function () { $(function () { request_recaptcha_token(); }); }; user_registration_recaptcha_init(); // /** // * Reinitialize the form again after page is fully loaded, // * in order to support third party popup plugins like elementor. // * // * @since 1.9.0 // */ // $(window).on("load", function () { // user_registration_recaptcha_init(); // }); $(function () { $(document).on( "user_registration_frontend_before_form_submit", function (event, data, $registration_form, $error_message) { if ("undefined" !== typeof ur_recaptcha_code) { if ( "1" == $registration_form.data("captcha-enabled") && ur_recaptcha_code.site_key.length ) { if (ur_recaptcha_code.version == "v3") { var captchaResponse = $registration_form .find('[name="g-recaptcha-response"]') .val(); request_recaptcha_token(); } else if (ur_recaptcha_code.version == "hCaptcha") { var captchaResponse = $registration_form .find('[name="h-captcha-response"]') .val(); hcaptcha.reset(google_recaptcha_user_registration); } else if (ur_recaptcha_code.version == "cloudflare") { var captchaResponse = $registration_form .find('[name="cf-turnstile-response"]') .val(); turnstile.reset(google_recaptcha_user_registration); } else { var captchaResponse = $registration_form .find('[name="g-recaptcha-response"]') .val(); for ( var i = 0; i <= google_recaptcha_user_registration; i++ ) { grecaptcha.reset(i); } if (ur_recaptcha_code.is_invisible) { grecaptcha.execute(); } } if (0 === captchaResponse.length) { $error_message["message"] = ursL10n.captcha_error; } } } } ); $(document).on( "user_registration_after_login_failed", function (event, $login_form) { if ( "undefined" !== typeof ur_recaptcha_code && ur_recaptcha_code.site_key.length ) { var ur_recaptcha_node = $login_form .closest("form") .find( "#ur-recaptcha-node #node_recaptcha_login.g-recaptcha" ).length; var ur_recaptcha_node_hcaptcha = $login_form .closest("form") .find( "#ur-recaptcha-node #node_recaptcha_login.g-recaptcha-hcaptcha" ).length; var ur_recaptcha_node_cloudflare = $login_form .closest("form") .find( "#ur-recaptcha-node #node_recaptcha_login.cf-turnstile" ).length; var ur_recaptcha_node_v3 = $login_form .closest("form") .find( "#ur-recaptcha-node #node_recaptcha_login.g-recaptcha-v3" ).length; if ( ur_recaptcha_node !== 0 || ur_recaptcha_node_hcaptcha !== 0 || ur_recaptcha_node_cloudflare !== 0 || ur_recaptcha_node_v3 !== 0 ) { if (ur_recaptcha_code.version == "v3") { request_recaptcha_token(); } else if (ur_recaptcha_code.version == "hCaptcha") { hcaptcha.reset(google_recaptcha_login); } else if (ur_recaptcha_code.version == "cloudflare") { turnstile.reset(google_recaptcha_login); } else { for (var i = 0; i <= google_recaptcha_login; i++) { grecaptcha.reset(i); } if (ur_recaptcha_code.is_invisible) { grecaptcha.execute(); } } } } } ); }); })(jQuery); var google_recaptcha_user_registration; var google_recaptcha_login; var onloadURCallback = function () { jQuery(".ur-frontend-form") .find("form.register") .each(function (i) { $this = jQuery(this); var form_id = $this.closest(".ur-frontend-form").attr("id"); var node_recaptcha_register = $this.find( "#ur-recaptcha-node #node_recaptcha_register" ).length; if ( "undefined" !== typeof ur_recaptcha_code && ur_recaptcha_code.site_key.length ) { if (node_recaptcha_register !== 0) { if ("hCaptcha" === ur_recaptcha_code.version) { $this .find("#ur-recaptcha-node .g-recaptcha-hcaptcha") .attr("id", "node_recaptcha_register_" + form_id); google_recaptcha_user_registration = hcaptcha.render( "node_recaptcha_register_" + form_id, { sitekey: ur_recaptcha_code.site_key, theme: "light", style: "transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;", } ); } else if ("cloudflare" === ur_recaptcha_code.version) { $this .find("#ur-recaptcha-node .cf-turnstile") .attr("id", "node_recaptcha_register_" + form_id); google_recaptcha_user_registration = turnstile.render( "#node_recaptcha_register_" + form_id, { sitekey: ur_recaptcha_code.site_key, theme: ur_recaptcha_code.theme_mode, style: "transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;", } ); } else { $this .find("#ur-recaptcha-node .g-recaptcha") .attr("id", "node_recaptcha_register_" + form_id); google_recaptcha_user_registration = grecaptcha.render( "node_recaptcha_register_" + form_id, { sitekey: ur_recaptcha_code.site_key, theme: "light", style: "transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;", } ); } if (ur_recaptcha_code.is_invisible) { grecaptcha.execute(google_recaptcha_user_registration); } } } }); jQuery(".ur-frontend-form") .find("form.login") .each(function (i) { $this = jQuery(this); var ur_recaptcha_node = $this.find("#ur-recaptcha-node"); if ( "undefined" !== typeof ur_recaptcha_code && ur_recaptcha_code.site_key.length ) { if (ur_recaptcha_node.length !== 0) { if ("hCaptcha" === ur_recaptcha_code.version) { google_recaptcha_login = hcaptcha.render( ur_recaptcha_node .find(".g-recaptcha-hcaptcha") .attr("id"), { sitekey: ur_recaptcha_code.site_key, theme: "light", style: "transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;", } ); } else if ("cloudflare" === ur_recaptcha_code.version) { google_recaptcha_login = turnstile.render( "#"+ur_recaptcha_node .find(".cf-turnstile") .attr("id"), { sitekey: ur_recaptcha_code.site_key, theme: ur_recaptcha_code.theme_mode, style: "transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;", } ); } else { google_recaptcha_login = grecaptcha.render( ur_recaptcha_node.find(".g-recaptcha").attr("id"), { sitekey: ur_recaptcha_code.site_key, theme: "light", style: "transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;", } ); } if (ur_recaptcha_code.is_invisible) { grecaptcha.execute(google_recaptcha_login); } } } }); jQuery(".ur-frontend-form") .find("form.ur_lost_reset_password") .each(function (i) { $this = jQuery(this); var ur_recaptcha_node = $this.find("#ur-recaptcha-node"); if ("undefined" !== typeof ur_recaptcha_code) { if (ur_recaptcha_node.length !== 0) { if ("hCaptcha" === ur_recaptcha_code.version) { google_recaptcha_ur_lost_reset_password = hcaptcha.render( ur_recaptcha_node .find(".g-recaptcha-hcaptcha") .attr("id"), { sitekey: ur_recaptcha_code.site_key, theme: "light", style: "transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;", } ); } else if ("cloudflare" === ur_recaptcha_code.version) { google_recaptcha_ur_lost_reset_password = turnstile.render( "#"+ur_recaptcha_node .find(".cf-turnstile") .attr("id"), { sitekey: ur_recaptcha_code.site_key, theme: ur_recaptcha_code.theme_mode, style: "transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;", } ); } else { google_recaptcha_ur_lost_reset_password = grecaptcha.render( ur_recaptcha_node .find(".g-recaptcha") .attr("id"), { sitekey: ur_recaptcha_code.site_key, theme: "light", style: "transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;", } ); } if (ur_recaptcha_code.is_invisible) { grecaptcha.execute( google_recaptcha_ur_lost_reset_password ); } } } }); }; function request_recaptcha_token() { var node_recaptcha_register = jQuery(".ur-frontend-form").find( "form.register #ur-recaptcha-node #node_recaptcha_register.g-recaptcha-v3" ).length; if ( "undefined" !== typeof ur_recaptcha_code && ur_recaptcha_code.site_key.length ) { if (node_recaptcha_register !== 0) { grecaptcha.ready(function () { grecaptcha .execute(ur_recaptcha_code.site_key, { action: "register", }) .then(function (token) { jQuery("form.register") .find("#g-recaptcha-response") .text(token); }); }); } } var node_recaptcha_login = jQuery(".ur-frontend-form").find( "form.login .ur-form-row .ur-form-grid #ur-recaptcha-node #node_recaptcha_login.g-recaptcha-v3" ).length; if ( "undefined" !== typeof ur_recaptcha_code && ur_recaptcha_code.site_key.length ) { if (node_recaptcha_login !== 0) { grecaptcha.ready(function () { grecaptcha .execute(ur_recaptcha_code.site_key, { action: "login", }) .then(function (token) { jQuery("form.login") .find("#g-recaptcha-response") .text(token); }); }); } } var node_recaptcha_ur_lost_reset_password = jQuery( ".ur-frontend-form" ).find( "form.ur_lost_reset_password .ur-form-row .ur-form-grid #ur-recaptcha-node #node_recaptcha_lost_password.g-recaptcha-v3" ).length; if ("undefined" !== typeof ur_recaptcha_code) { if (node_recaptcha_ur_lost_reset_password !== 0) { grecaptcha.ready(function () { grecaptcha .execute(ur_recaptcha_code.site_key, { action: "lost_password", }) .then(function (token) { jQuery("form.ur_lost_reset_password") .find("#g-recaptcha-response") .text(token); }); }); } } }
[-] jquery.validate.min.js
[edit]
[-] my-account.min.js
[edit]
[-] jquery.min.js
[edit]
[-] my-account.js
[edit]
[+]
..
[-] ur-common.min.js
[edit]
[-] password-strength-meter.js
[edit]
[-] ur-login.js
[edit]
[-] user-registration-recaptcha.min.js
[edit]
[-] user-registration-form-validator.js
[edit]
[-] user-registration-recaptcha.js
[edit]
[-] user-registration.min.js
[edit]
[-] user-registration-form-validator.min.js
[edit]
[-] user-registration.js
[edit]
[-] ur-login.min.js
[edit]
[-] password-strength-meter.min.js
[edit]
[-] jquery.validate.js
[edit]
[-] lost-password.min.js
[edit]
[-] lost-password.js
[edit]
[-] ur-common.js
[edit]