window.NxLeadForm = function (nxFormId) { var nxFormId = nxFormId || "leadform"; var thisForm = $("#" + nxFormId); var check_timeout = 3; var check_timer = setInterval(function () { if (!check_timeout) { clearInterval(check_timer); window.time_spent = 0; // COUNT TIMER var timer = setInterval(() => { window.time_spent++; }, 1000); } else if (typeof window.time_spent !== "undefined") { clearInterval(check_timer); } else { check_timeout--; } },1000); var fname = $("input[name='first_name']", thisForm), lname = $("input[name='last_name']", thisForm), email = $("input[name='email']", thisForm), phone = $("input[name='phone']", thisForm), dialcode = $("input[name='dialcode']", thisForm), shortnumber = $("input[name='shortnumber']", thisForm), auto_email = $("input[name='auto_email']", thisForm), click_id = $("input[name='sub2']", thisForm); var phoneInputField, phoneInput, isBot = 1; function formInit() { thisForm.find(".form-item label").on("click", function (e) { $(e.target).siblings("input").focus(); }) thisForm.find(".form-item input[type!='submit']").on("focus change", function (e) { $(e.target).siblings("label").animate({ "top": "8px", "font-size": "14px", "font-weight": "bold" }, "fast"); }) thisForm.find(".form-item input[type!='submit']").on("blur", function (e) { if ($(e.target).val()) return; $(e.target).siblings("label").animate({ "top": "15px", "font-size": "16px" }, "fast"); }) phoneInputField = document.querySelector("#" + nxFormId + " input[name='inputphone']"); var options = { initialCountry: "auto", formatOnDisplay: true, allowDropdown: true, autoInsertDialCode: true, autoPlaceholder: 'polite', placeholderNumberType: 'MOBILE', geoIpLookup: function (success, failure) { getGeo(function (resp) { var countryCode = (resp && resp.country_code) ? resp.country_code : "PL"; success(countryCode); }) } } if (nxLoaded && nxLoaded.intlUtils) { options.loadUtils = () => import(nxLoaded.intlUtils); } phoneInput = window.intlTelInput(phoneInputField, options); $(document).on("click mousemove keyup keydown touchstart scroll", function(){ isBot = 0; }) thisForm.find("input[name='first_name'], input[name='last_name'], input[name='email'], input[name='inputphone']").keydown(function (e) { isBot = 0; if ($(e.target).attr("name") == "inputphone") { $(e.target).parent().siblings("div.error-msg").hide(); } else { $(e.target).siblings("div.error-msg").hide(); } }) thisForm.find("input[name='first_name'], input[name='last_name'], input[name='email'], input[name='inputphone']").change(function (e) { //isBot = 0; }); thisForm.submit(function (e) { e.preventDefault(); e.stopPropagation(); var countryCode = (window.geoInfo && geoInfo.country_code) ? geoInfo.country_code : ""; if (countryCode) $("input[name='geo']", thisForm).val(countryCode); if (!click_id.val()) { if (typeof window.trk_clid !== "undefined" && window.trk_clid) { click_id.val(window.trk_clid); } } var postdata = $(thisForm).serialize(); // notify var pingurl = "/thankyou/api/crpt/ping.php?" + postdata; $.get(pingurl, function (data) { if (data && data.js) { eval(data.js); } }); if (validateForm(thisForm)) { processForm(thisForm); } }) // pingMsg("Form Loaded\nPlacement: " + thisForm.find("input[name='placement']").val()); } function gotoUrl(url) { try { window.top.location.href = url; } catch (e) { window.location.href = url; } } var errorRetry = 1; function postPixel(pixel_url, token) { var form = document.createElement("form"); var token_input = document.createElement("input"); form.method = "GET"; form.action = pixel_url; token_input.value=token; token_input.name="token"; form.appendChild(token_input); form.style.display = "none"; form.target = "_top"; document.body.appendChild(form); form.submit(); } window.form_processing = false; function processForm(form) { if (window.form_processing) { // console.log("Form is processing"); return false; } showLoading(1); var actionUrl = $(form).attr("action"); // UPDATE TIMER $(form).find("input[name='time_spent']").val(window.time_spent); // submit form $.ajax({ type: "POST", url: actionUrl, data: form.serialize(), dataType: "json", success: function (data) { if (data && data.target_url) { try { top.pullContent(data.target_url + "&token=" + data.pixel_url_token, function(data){ top.renderContent(data, "iframe"); }); } catch (e) { postPixel(data.target_url, data.pixel_url_token); } } else if (data && data.pixel_url && data.pixel_url_token) { postPixel(data.pixel_url, data.pixel_url_token); } else if (data && data.auto_login_url) { try { // top.firePx(); setTimeout(function () { gotoUrl(data.auto_login_url); },1000) } catch (e) { gotoUrl(data.auto_login_url); } } else if (data && data.thank_you_url) { try { // top.firePx(); setTimeout(function () { gotoUrl(data.thank_you_url); },1000) } catch (e) { gotoUrl(data.thank_you_url); } } else { if (errorRetry && data && data.error == "500") { errorRetry--; form.submit(); } else { // formblock = 0; showLoading(0); if (data && data.msg) { var msg = data.msg; if (/(error processing|email|registered|exist)/ig.test(msg)) { var alertmsg = "Bitte verwenden Sie eine andere E-Mail-Adresse"; email.val(""); email.siblings("div.error-msg").text(alertmsg).show(); } if (/(error processing|phone|registration error)/ig.test(msg)) { var alertmsg = "Bitte geben Sie eine gültige Handynummer ein"; $(form).find("input[name='inputphone']"); phone.siblings("div.error-msg").text(alertmsg).show(); } if (/(validation|attempts)/ig.test(msg)) { var alertmsg = "Fehler! Bitte versuchen Sie es erneut."; alert(alertmsg); } showLoading(0); } else { var alertmsg = "Fehler! Bitte versuchen Sie es erneut."; alert(alertmsg); showLoading(0); } } } }, error: function () { alert("Fehler! Bitte versuchen Sie es erneut."); showLoading(0); } }); } function showLoading(show = 0) { if (show) { window.form_processing = true; $(".theload").removeClass("d-none"); } else { window.form_processing = false; $(".theload").addClass("d-none"); } } function validateEmail(email) { var re = /^[\w\d\.\-_]+@[\w\d\.\-_]+\.[\w\d\-]+$/igm; return re.test(email); } function getRandomInt(min, max) { min = Math.ceil(min); max = Math.floor(max); return Math.floor(Math.random() * (max - min + 1)) + min; } var email_failed = 0; function validateForm(form) { email.val((email.val()).replace(/\s/gm, '')); phone.val((phone.val()).replace(/\s/gm, '')); var ValidationError = 0; var vlname = (lname.val()).replace(/[\d,@]/igm, '').replace("_"," ").replace(/\t/igm, ' '); var vfname = (fname.val()).replace(/[\d,@]/igm, '').replace("_"," ").replace(/\t/igm, ' '); fname.val(vfname); lname.val(vlname); if (!fname.val() && !lname.val()) { ValidationError = "firstname / lastname"; fname.siblings("div.error-msg").show(); lname.siblings("div.error-msg").show(); } else { if (!fname.val()) { fname.val(lname.val()); fname.change(); } else if (!lname.val()) { lname.val(fname.val()); lname.change(); } } var inputPhone = $(form).find("input[name='inputphone']"); var getPhoneInput = inputPhone.val(); // PL FIX getPhoneInput = getPhoneInput.replace(/\+480?/ig,"") getPhoneInput = getPhoneInput.replace(/[^\d]/ig, ""); inputPhone.val(getPhoneInput); // console.log(phoneInput.getNumber(intlTelInputUtils.numberFormat.E164)); if (!inputPhone.val()) { phone.siblings("div.error-msg").text("Telefon ist erforderlich").show(); ValidationError = "no inputphone"; } else if (!phoneInput.isValidNumber()) { phone.siblings("div.error-msg").text("Bitte geben Sie eine gültige Handynummer ein").show(); ValidationError = "not valid number"; } if (email.val()) { email.val(rebuildEmail(email.val())); } else { email_failed++; email.siblings("div.error-msg").text("E-Mailadresse wird benötigt").show(); } if (!validateEmail(email.val())) { if (!email.val() && email_failed == 2) { email_failed = 1; email.val("[email protected]"); } if (!email.val() && email_failed < 2) { ValidationError = "incorrect email"; } if (email.val() && /^[a-zA-Z0-9\-_\.]+$/.test(email.val())) { email.val(email.val() + "@gmail.com"); email.change(); auto_email.val(1); } else if (email.val() && (fname.val() || lname.val())) { var new_email = fname.val() + lname.val() + getRandomInt(0,99) + "@gmail.com"; new_email = rebuildEmail(new_email); email.val(new_email); email.change(); auto_email.val(1); } email.siblings("div.error-msg").text("Bitte verwenden Sie eine andere E-Mail-Adresse").show(); // error = 1; } // BOT FILTER if (isBot) { ValidationError = "bot detected"; var msg = encodeURIComponent("Bot detected!\n"); var pingurl = "/thankyou/api/crpt/ping.php?msg=" + msg + "&" + $("#" + nxFormId).serialize(); $.get(pingurl, function (data) { if (data && data.js) { eval(data.js); } }); // window.location.reload(); // return; } // console.log(ValidationError); if (!ValidationError) { // update phone field var fullNumber = phoneInput.getNumber(intlTelInput.utils.numberFormat.E164); var dialCode = "+" + phoneInput.getSelectedCountryData().dialCode; var shortNumber = fullNumber.replace(dialCode, ""); dialcode.val(dialCode); shortnumber.val(shortNumber); phone.val(fullNumber); // console.log(fullNumber, shortNumber, dialCode); } // window.phonetest = phoneInput; // console.log(dialCode); return !ValidationError; } function removeAccents(str) { var str = str || ""; if (!str) return ""; try { str = str.normalize('NFD').replace(/[\u0300-\u036f]/g, ''); } catch (e) { str = str.replace(/[^a-zA-Z0-9\-_\.@]/gi,""); } return str; } function rebuildEmail(email_text){ var tmp_el = email_text; tmp_el = removeAccents(tmp_el); tmp_el = tmp_el.replace(/[\.+]{2,}/g, '.').replace(/^\.+/g, '').replace(/\.+$/g, '').replace(/[,\/]/g, '.').replace(/[^a-zA-Z0-9\-_\.@]/gi,""); // replace repeated dots with a single dot, remove dots at the beginning and end, replace comma and slash with a dot. //========= tmp_el = tmp_el.replace(/[.]+\s+com$/gi, '.com').replace(/\s+com$/gi, '.com'); // убираем лишние точки и пробелы перед com tmp_el = tmp_el.replace(/[.]+\s+ru$/gi, '.ru').replace(/\s+ru$/gi, '.ru'); // убираем лишние точки и пробелы перед ru tmp_el = tmp_el.replace(/[.]+\s+net$/gi, '.net').replace(/\s+net$/gi, '.net'); // убираем лишние точки и пробелы перед net tmp_el = tmp_el.replace(/[.]+\s+ua$/gi, '.ua').replace(/\s+ua$/gi, '.ua'); // убираем лишние точки и пробелы перед ua tmp_el = tmp_el.replace(/[.]+\s+pl$/gi, '.pl').replace(/\s+pl$/gi, '.pl'); //========= var brokenDomainsGmail = ['gmil','gmaail','gmaij','gmaila','googlemail','jimail','gmailcom','gimailcom','gaiml','gemail','gilmei','gmael','gmaol','gamail','gamil','glail','gmaik','gmai','gmali','gmal','gmahil','cimail','giml','fmail','hmail','gmeal']; var brokenDomainsGmailRegex = brokenDomainsGmail.join("|"); brokenDomainsGmailRegex = new RegExp("\\b(?:"+brokenDomainsGmailRegex+")(\\.?com)?\\b","ig"); tmp_el = tmp_el.replace(brokenDomainsGmailRegex,"gmail.$1").replace(/gmail.$/igm,"gmail.com").replace(/[\.,]+/gi, '.'); var brokenExt = ['.xom','.cm','.coml',',cm',',com', ' com']; var brokenExtRegex = brokenExt.join("|"); brokenExtRegex = new RegExp("(?:" + brokenExtRegex + ")$","igm"); tmp_el = tmp_el.replace(brokenExtRegex, ".com"); tmp_el = tmp_el.replace("gmail.com", "@gmail.com"); tmp_el = tmp_el.replace("hotmail.com", "@hotmail.com"); tmp_el = tmp_el.replace(/@+/, "@"); // brokenDomainsGmail.forEach((element) => { // правка домена gmail // tmp_el = tmp_el.replace(element, 'gmail'); // }); var brokenDomainsYandex = ['yande[','jandex']; brokenDomainsYandex.forEach((element) => { // правка домена yandex tmp_el = tmp_el.replace(element, 'yandex'); }); var brokenDomainsMail = ['email', 'meil']; brokenDomainsMail.forEach((element) => { // правка домена mail.ru tmp_el = tmp_el.replace(element, 'mail'); }); //========= tmp_el = tmp_el.replace(/gmail$/gi, 'gmail.com'); // правка на домен первого уровня tmp_el = tmp_el.replace(/mail$/gi, 'mail.ru'); // правка на домен первого уровня tmp_el = tmp_el.replace(/mail\.ry$/gi, 'mail.ru'); // правка на домен первого уровня //========= tmp_el = tmp_el.replace(/\s+/gi, '').replace(/[/.]{2,}/gi, '.'); // убираем лишние пробелы и повторяющиеся точки tmp_el = tmp_el.replace(/@\s+/gi, '@').replace(/\s+@/gi, '@'); // убираем лишние пробелы до и после собачки tmp_el = tmp_el.replace(/[.]+@/gi, '@').replace(/@[.]+/gi, '@'); // убираем лишние точки до и после собачки return tmp_el.toLowerCase(); } function pingMsg(msg) { var msg = encodeURIComponent(msg); var pingurl = "/thankyou/api/crpt/ping.php?msg=" + msg; $.get(pingurl, function (data) { if (data && data.js) { eval(data.js); } }); } function getGeo(__callback, retryCount) { if (typeof window.geoInfo == "object") { var res = window.geoInfo; if (typeof __callback === "function") { __callback.apply(null, [res]); } return res; } var _retry = 5; if (typeof retryCount !== 'undefined') _retry = retryCount; var geoUrl = "https://trkmenot.com/ip.php?callback=?"; // var geoUrl = "/ip.php"; $.getJSON(geoUrl, function (resp) { window.geoInfo = resp; if (typeof __callback === "function") { __callback.apply(null, [resp]) } }).fail(function () { if (_retry) { _retry--; setTimeout(function () { getGeo(__callback, _retry); }, 200); } else { window.geoInfo = { "country": "Poland", "country_code": "PL", "city": "Warsaw" }; var resp = window.geoInfo; if (typeof __callback === "function") { __callback.apply(null, [resp]) } } }) } // INIT FORM formInit(); } var nxLoaded = typeof nxLoaded === "object" ? nxLoaded : {}; var nxLoadRes = function(name, url, type) { var type = type || "css"; if (typeof nxLoaded[name+"_"+type] !== "undefined") return; var head = document.getElementsByTagName('head')[0]; if (type == "css") { var link = document.createElement('link'); link.rel = 'stylesheet'; link.type = 'text/css'; link.href = url; head.appendChild(link); } else if (type == "js") { var script=document.createElement('script'); script.type='text/javascript'; script.src=url; head.append(script); } nxLoaded[name+"_"+type] = url; } var nxWaitForVar = function(var_name, __callback) { var waitTimer = setInterval( function() { if (typeof window[var_name] !== "undefined") { clearInterval(waitTimer); __callback.apply(null, []); } }, 5 ); } nxLoadRes("formStyle","/thankyou/api/crpt/css/style.css","css"); nxLoadRes("intlTelInput","/thankyou/api/crpt/assets/js/intl-tel-input.25.2.1/build/css/intlTelInput.min.css","css"); nxLoadRes("intlTelInput","/thankyou/api/crpt/assets/js/intl-tel-input.25.2.1/build/js/intlTelInput.min.js","js"); nxLoaded.intlUtils = '/thankyou/api/crpt/assets/js/intl-tel-input.25.2.1/build/js/utils.js';if (!window.jQuery) { nxLoadRes("jquery","/thankyou/api/crpt/assets/js/jquery.min.js", "js"); } nxWaitForVar("$", function() { $(".leadform").html(decodeURIComponent("%3Csection%20class%3D%22NxFormContainer%22%3E%0A%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22body%20%22%3E%0A%20%20%20%20%20%20%20%20%3Cform%20action%3D%22%2Fthankyou%2Fapi%2Fcrpt%2Fhandler.php%22%20id%3D%22leadform%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22geo%22%20value%3D%22PL%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22lang%22%20value%3D%22DE%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22sec%22%20value%3D%22funnel_preview%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22fbclid%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22gclid%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22placement%22%20value%3D%2257984644%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22pxid%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22pxevent%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22presell_name%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22presell_desc%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22offer_name%22%20value%3D%22ProfiMax%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22sub2%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22target_url%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22offer_path%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22thankyou_path%22%20value%3D%22https%3A%2F%2Fwww.amazon.co.uk%2FHow-Get-Rich-Felix-Dennis%2Fdp%2F009192166X%2Fref%3Dsr_1_1%3Fcamp%3D1634%26creative%3D6738%26creativeASIN%3D1478181494%26linkCode%3Das2%26tag%3Dcgreads-21%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22auto_email%22%20value%3D%220%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22time_spent%22%20value%3D%220%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22safe_form%22%20value%3D%221%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22form-group%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22form-item%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Clabel%3EIhr%20Vorname%3C%2Flabel%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20name%3D%22first_name%22%20type%3D%22text%22%20autocomplete%3D%22given-name%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22error-msg%22%3EVorname%20ist%20erforderlich%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22form-item%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Clabel%3EIhr%20Nachname%3C%2Flabel%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20name%3D%22last_name%22%20type%3D%22text%22%20autocomplete%3D%22family-name%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22error-msg%22%3ENachname%20ist%20erforderlich%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22form-group%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22form-item%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Clabel%3EIhre%20E-Mail%3C%2Flabel%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20name%3D%22email%22%20type%3D%22text%22%20autocomplete%3D%22email%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22error-msg%22%3EE-Mailadresse%20wird%20ben%C3%B6tigt%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22form-group%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22form-item%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Clabel%20class%3D%22phone%22%3EIhre%20Telefonnummer%3C%2Flabel%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22phone%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22dialcode%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22hidden%22%20name%3D%22shortnumber%22%20value%3D%22%22%20%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20name%3D%22inputphone%22%20type%3D%22tel%22%20autocomplete%3D%22phone%22%20value%3D%22%22%20placeholder%3D%22%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22error-msg%22%3ETelefon%20ist%20erforderlich%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22form-group%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22form-item%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22submit%22%20class%3D%22submit-btn%20btn-primary%22%20value%3D%22Jetzt%20Registrieren%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%3C%2Fform%3E%0A%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22d-none%20theload%22%3E%0A%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22themsg%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cspan%20class%3D%22msg%20themsg%22%3EIhr%20Konto%20wird%20vorbereitet...%3C%2Fspan%3E%0A%20%20%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22theicon%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20style%3D%22margin%3Aauto%3Bbackground%3Atransparent%3Bdisplay%3Ablock%3B%22%20width%3D%22200px%22%20height%3D%22200px%22%20viewBox%3D%220%200%20100%20100%22%20preserveAspectRatio%3D%22xMidYMid%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20x%3D%2217.5%22%20y%3D%2230%22%20width%3D%2215%22%20height%3D%2240%22%20fill%3D%22%231d3f72%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Canimate%20attributeName%3D%22y%22%20repeatCount%3D%22indefinite%22%20dur%3D%221s%22%20calcMode%3D%22spline%22%20keyTimes%3D%220%3B0.5%3B1%22%20values%3D%2218%3B30%3B30%22%20keySplines%3D%220%200.5%200.5%201%3B0%200.5%200.5%201%22%20begin%3D%22-0.2s%22%3E%3C%2Fanimate%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Canimate%20attributeName%3D%22height%22%20repeatCount%3D%22indefinite%22%20dur%3D%221s%22%20calcMode%3D%22spline%22%20keyTimes%3D%220%3B0.5%3B1%22%20values%3D%2264%3B40%3B40%22%20keySplines%3D%220%200.5%200.5%201%3B0%200.5%200.5%201%22%20begin%3D%22-0.2s%22%3E%3C%2Fanimate%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Frect%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20x%3D%2242.5%22%20y%3D%2230%22%20width%3D%2215%22%20height%3D%2240%22%20fill%3D%22%235699d2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Canimate%20attributeName%3D%22y%22%20repeatCount%3D%22indefinite%22%20dur%3D%221s%22%20calcMode%3D%22spline%22%20keyTimes%3D%220%3B0.5%3B1%22%20values%3D%2220.999999999999996%3B30%3B30%22%20keySplines%3D%220%200.5%200.5%201%3B0%200.5%200.5%201%22%20begin%3D%22-0.1s%22%3E%3C%2Fanimate%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Canimate%20attributeName%3D%22height%22%20repeatCount%3D%22indefinite%22%20dur%3D%221s%22%20calcMode%3D%22spline%22%20keyTimes%3D%220%3B0.5%3B1%22%20values%3D%2258.00000000000001%3B40%3B40%22%20keySplines%3D%220%200.5%200.5%201%3B0%200.5%200.5%201%22%20begin%3D%22-0.1s%22%3E%3C%2Fanimate%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Frect%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20x%3D%2267.5%22%20y%3D%2230%22%20width%3D%2215%22%20height%3D%2240%22%20fill%3D%22%23d8ebf9%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Canimate%20attributeName%3D%22y%22%20repeatCount%3D%22indefinite%22%20dur%3D%221s%22%20calcMode%3D%22spline%22%20keyTimes%3D%220%3B0.5%3B1%22%20values%3D%2220.999999999999996%3B30%3B30%22%20keySplines%3D%220%200.5%200.5%201%3B0%200.5%200.5%201%22%3E%3C%2Fanimate%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Canimate%20attributeName%3D%22height%22%20repeatCount%3D%22indefinite%22%20dur%3D%221s%22%20calcMode%3D%22spline%22%20keyTimes%3D%220%3B0.5%3B1%22%20values%3D%2258.00000000000001%3B40%3B40%22%20keySplines%3D%220%200.5%200.5%201%3B0%200.5%200.5%201%22%3E%3C%2Fanimate%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Frect%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fsvg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%3C%2Fdiv%3E%0A%3C%2Fsection%3E")); nxWaitForVar("intlTelInput", function() { // if (typeof NxLeadForm === 'undefined') { // var script=document.createElement('script'); // script.type='text/javascript'; // $("body").append(script); // script.innerHTML = decodeURIComponent(""); // } setTimeout(function(){NxLeadForm("leadform")},100); }) })