Identifions les besoins qui vous siéent
Session virtuelle
Apprenez à nous connaître et découvrez comment nous pouvons vous accompagner dans l’atteinte de vos objectifs
PICK A TIME & DATE
We work around your schedule
Réservez
Document de synthèse
Rencontrez nos experts pour développer des solutions de cybersécurité pour votre organisation
'); retVal = false; } curVal = form.find("[name='LastName']").val(); if (!curVal || curVal.length < 2 || curVal.length > 58) { form.find("[name='LastName']").after('
Veuillez saisir votre nom
'); retVal = false; } curVal = form.find("[name='Email']").val(); if (!curVal || !isValidEmailFormat(curVal)) { form.find("[name='Email']").after('
Veuillez saisir une adresse e-mail valide
'); retVal = false; } curVal = form.find("[name='Company']").val(); if (!curVal || curVal.length < 2 || curVal.length > 58) { form.find("[name='Company']").after('
Veuillez saisir votre entreprise
'); retVal = false; } curVal = form.find("[name='Job_Level__c']").val(); if (!curVal) { form.find("[name='Job_Level__c']").after('
Sélectionnez votre niveau de responsabilité
'); retVal = false; } curVal = form.find("[name='Job_Role__c']").val(); if (form.find("[name='Job_Role__c']").is(":visible") && !curVal) { form.find("[name='Job_Role__c']").after('
Sélectionnez votre niveau de responsabilité / domaine de spécialisation
'); retVal = false; } curVal = form.find("[name='Phone']").val(); if (!curVal || curVal.length < 6 || !isValidPhone(curVal)) { form.find("[name='Phone']").after('
Veuillez saisir votre numéro de téléphone
'); retVal = false; } curVal = form.find("[name='Country']").val(); if (!curVal) { form.find("[name='Country']").after('
Veuillez sélectionner votre pays
'); retVal = false; } curVal = form.find("[name='State']").val(); if (form.find("[name='State']").is(":visible") && !curVal) { form.find("[name='State']").after('
Veuillez sélectionner votre région ou province
'); retVal = false; } curVal = form.find("[name='zip']").val(); if (form.find("[name='zip']").is(":visible") && !curVal || !isValidZip(curVal, form)) { form.find("[name='zip']").after('
Veuillez saisir un code postal valide
'); retVal = false; } return retVal; } getSerializedTracking('contact_specialist'); function populateLoggedInUserDetails() { if (typeof userHeaderModel !== "undefined" && userHeaderModel.id != 'anonymous') { form.find("input[name='FirstName']").val(userHeaderModel.firstName).trigger('change'); form.find("input[name='LastName']").val(userHeaderModel.lastName); form.find("input[name='Email']").val(userHeaderModel.businessEmail).trigger('change'); form.find("input[name='Company']").val(userHeaderModel.company); form.find("select[name='Job_Level__c']").val(userHeaderModel.jobLevel).trigger('change'); form.find("select[name='Job_Role__c']").val(userHeaderModel.jobRole); form.find("input[name='Phone']").val(userHeaderModel.businessPhone).trigger('change'); form.find('select[name="Country"]').val(userHeaderModel.country).trigger('change'); if (userHeaderModel.country === 'United States') { form.find("#usa_list").show(); form.find("#usa_list select").val(userHeaderModel.state); form.find("#zip_code").show(); form.find("input[name='zip']").val(userHeaderModel.zip); } else if (userHeaderModel.country === "Canada") { form.find('#province_list').css('display', 'block'); form.find("#province_list select").val(userHeaderModel.province); form.find("#zip_code").show(); form.find("input[name='zip']").val(userHeaderModel.zip); } else if (userHeaderModel.country === "Germany") { form.find("#zip_code").show(); form.find("input[name='zip']").val(userHeaderModel.zip); } else if (userHeaderModel.country === "Australia") { form.find("#zip_code").show(); form.find("input[name='zip']").val(userHeaderModel.zip); } if (typeof trackPrefillAnalyticsForLoggedInUsers == 'function') { trackPrefillAnalyticsForLoggedInUsers('contact_specialist'); } } } if (typeof populateLeadDetails == 'function') {populateLeadDetails('contact_specialist');} function updateComments() {var commentCapturecombinedVal = form.find(".quest1").text() + ":" + form.find("textarea[name='commentCapture1']").val() + " " + form.find(".quest1").text() + ":" + form.find("textarea[name='commentCapture2']").val();var hiddenCommentsELement = form.find("input[name='commentCapture']");hiddenCommentsELement.val(commentCapturecombinedVal);}function updateEmailMask() { let email = form.find("input[name='Email']").val(); if (email && email.trim() != '') { let maskedEmail = maskEmailAddress(email); console.log("maskedEmail:", maskedEmail); form.find("input[name='emailFormMask']").val(maskedEmail); } }function maskEmailAddress (emailAddress) { function mask(str) { var strLen = str.length; if (strLen > 4) { return str.substr(0, 1) + str.substr(1, strLen - 1).replace(/\w/g, '*') + str.substr(-1,1); } return str.replace(/\w/g, '*'); } return emailAddress.replace(/([\w.]+)@([\w.]+)(\.[\w.]+)/g, function (m, p1, p2, p3) { return mask(p1) + '@' + mask(p2) + p3; }); return emailAddress;}form.on('submit', function (e) {e.stopImmediatePropagation();e.preventDefault();$("form.specialistForm button[type='submit']").prop('disabled', true); $(".specialistForm .errorMsg").html("").hide();updateComments();updateEmailMask();if (!isValidForm()) {hideBtnLoader("specialistForm"); $("form.specialistForm button[type='submit']").prop('disabled', false); return false; } else { showBtnLoader("specialistForm"); }//fingerprint codeif (typeof (mktVisitorComputedID) != "undefined" && mktVisitorComputedID) {console.log("update User Contact Details on profile");$.ajax({type: "POST",url: "/apps/pan/public/profilemanagement.updatecontactformdetails.json",data: {"mktVisitorId": mktVisitorComputedID,"cntFormFirstName": form.find("input[name='FirstName']").val(),"cntFormLastName": form.find("input[name='LastName']").val(),"cntFormEmail": form.find("input[name='Email']").val(),"cntFormCompany": form.find("input[name='Company']").val(),"_charset_": "UTF-8"},dataType: "json",success: function (data) {console.log("Updated the contact form details successfully", data)},error: function (jqXHR, textStatus, errorThrown) {console.log("Error: Could not update the contact form details.");}});}form.find("input[name='munchkinId']").val(mktoConfig.mktoMunchkinId);if (!form.find("input[name='zip']").is(":visible")) {form.find("input[name='zip']").val("");}$.ajax({type: "POST",url: mktoConfig.mktoFormSubmitEndPoint,data: form.serialize(),dataType: 'json',success: function (data) {if (data.success) {hideBtnLoader("specialistForm");if (typeof _satellite != 'undefined' && _satellite) {//analytics changestry {webData.formName = form.find("input[name='FormName']").val();webData.formEvent = "form-complete";} catch (e) {console.log(e);}_satellite.track('aemFormSubmit');}var $activeFlyout = $flyout.find('.flyout-container.active')$activeFlyout.find('.step-1').hide()$activeFlyout.find('.step-2').show()} else { hideBtnLoader("specialistForm"); $("form.specialistForm button[type='submit']").prop('disabled', false); var errorMessage = "Soumission du formulaire échouée"; $(".specialistForm .errorMsg").html("").html(errorMessage).show(); } }, error: function(jqXHR, textStatus, errorThrown) { console.log("Error: Could not post the form."); hideBtnLoader("specialistForm"); $("form.specialistForm button[type='submit']").prop('disabled', false); var errorMessage = "Soumission du formulaire échouée"; $(".specialistForm .errorMsg").html("").html(errorMessage).show(); }});});$('.btn-open-flyout').on('click', function () {$('.flyout form input,.flyout form select').each(function () {console.log("field value =>" ,$(this).val());if($(this).val() && $(this).val().length > 0)$(this).siblings('.placeholder').hide();});});$('.placeholder').on('click', function () {$(this).siblings('input').trigger('focus');$(this).siblings('select').trigger("click");console.log("clicked on placeholder");});$('.flyout form input,.flyout form select').on('focus', function () {$(this).siblings('.placeholder').hide();console.log("focused on input");});$('.flyout form input,.flyout form select').on('blur', function () {console.log("on blur - ");var $this = $(this);if ($this.val().length == 0)$(this).siblings('.placeholder').show();});});}
Contactez un spécialiste
Laissez-nous vous aider à pérenniser la cybersécurité de votre organisation
'); retVal = false; } curVal = form.find("[name='LastName']").val(); if (!curVal || curVal.length < 2 || curVal.length > 58) { form.find("[name='LastName']").after('
Veuillez saisir votre nom
'); retVal = false; } curVal = form.find("[name='Email']").val(); if (!curVal || !isValidEmailFormat(curVal)) { form.find("[name='Email']").after('
Veuillez saisir une adresse e-mail valide
'); retVal = false; } curVal = form.find("[name='Company']").val(); if (!curVal || curVal.length < 2 || curVal.length > 58) { form.find("[name='Company']").after('
Veuillez saisir votre entreprise
'); retVal = false; } curVal = form.find("[name='Job_Level__c']").val(); if (!curVal) { form.find("[name='Job_Level__c']").after('
Sélectionnez votre niveau de responsabilité
'); retVal = false; } curVal = form.find("[name='Job_Role__c']").val(); if (form.find("[name='Job_Role__c']").is(":visible") && !curVal) { form.find("[name='Job_Role__c']").after('
Sélectionnez votre niveau de responsabilité / domaine de spécialisation
'); retVal = false; } curVal = form.find("[name='Phone']").val(); if (!curVal || curVal.length < 6 || !isValidPhone(curVal)) { form.find("[name='Phone']").after('
Veuillez saisir votre numéro de téléphone
'); retVal = false; } curVal = form.find("[name='Country']").val(); if (!curVal) { form.find("[name='Country']").after('
Veuillez sélectionner votre pays
'); retVal = false; } curVal = form.find("[name='State']").val(); if (form.find("[name='State']").is(":visible") && !curVal) { form.find("[name='State']").after('
Veuillez sélectionner votre région ou province
'); retVal = false; } curVal = form.find("[name='zip']").val(); if (form.find("[name='zip']").is(":visible") && !curVal || !isValidZip(curVal)) { form.find("[name='zip']").after('
Veuillez saisir un code postal valide
'); retVal = false; } curVal = form.find("[name='active_project']").val(); if (form.find("[name='active_project']").is(":visible") && !curVal) { form.find("[name='active_project']").after('
Please enter valid active project
'); retVal = false; } curVal = form.find("[name='Start_implementation_date']").val(); if (form.find("[name='Start_implementation_date']").is(":visible") && !curVal) { form.find("[name='Start_implementation_date']").after('
Please enter valid implementation start
'); retVal = false; } curVal = form.find("[name='ProductInterest']").val();if (!curVal) {form.find("[name='ProductInterest']").after('
Sélectionnez une réponse
');retVal = false;} curVal = form.find("[name='Comments']").val(); if (!curVal || curVal.length < 2 || curVal.length > 300) { form.find("[name='Comments']").after('
Veuillez saisir vos commentaires ici
'); retVal = false; } return retVal; }getSerializedTracking('contact_sales');function populateLoggedInUserDetails() {if (typeof userHeaderModel !== "undefined" && userHeaderModel.id != 'anonymous') {form.find("input[name='FirstName']").val(userHeaderModel.firstName).trigger('change');form.find("input[name='LastName']").val(userHeaderModel.lastName);form.find("input[name='Email']").val(userHeaderModel.businessEmail).trigger('change');form.find("input[name='Company']").val(userHeaderModel.company);form.find("select[name='Job_Level__c']").val(userHeaderModel.jobLevel).trigger('change');form.find("select[name='Job_Role__c']").val(userHeaderModel.jobRole);form.find("input[name='Phone']").val(userHeaderModel.businessPhone).trigger('change');form.find('select[name="Country"]').val(userHeaderModel.country).trigger('change');if (userHeaderModel.country === 'United States') {form.find("#usa_list").show();form.find("#usa_list select").val(userHeaderModel.state);form.find("#zip_code").show();form.find("input[name='zip']").val(userHeaderModel.zip);} else if (userHeaderModel.country === "Canada") {form.find('#provence_list').css('display', 'block');form.find("#provence_list select").val(userHeaderModel.province);form.find("#zip_code").show();form.find("input[name='zip']").val(userHeaderModel.zip);} else if (userHeaderModel.country === "Germany") {form.find("#zip_code").show();form.find("input[name='zip']").val(userHeaderModel.zip);} else if (userHeaderModel.country === "Australia") {form.find("#zip_code").show();form.find("input[name='zip']").val(userHeaderModel.zip);}if (typeof trackPrefillAnalyticsForLoggedInUsers == 'function') {trackPrefillAnalyticsForLoggedInUsers('contact_sales');}$('.flyout form input,.flyout form select').each(function () {if ( $(this).val() && $(this).val().length > 0)$(this).siblings('.placeholder').hide();});}}if (typeof populateLeadDetails == 'function') {populateLeadDetails('contact_sales');}function updateComments() { var commentsELement = form.find("textarea[name='Comments']"); var hiddenCommentsELement = form.find("input[name='commentCapture']"); var activeProjectElement = form.find("select[name='active_project']"); var implementationStartDate = form.find("select[name='Start_implementation_date']"); var comments = commentsELement.val() + " "; comments = comments + activeProjectElement.attr('name') + "=" + activeProjectElement.val(); comments = comments + "," + implementationStartDate.attr('name') + "=" + implementationStartDate.val(); hiddenCommentsELement.val(comments);}function updateEmailMask() { let email = form.find("input[name='Email']").val(); if (email && email.trim() != '') { let maskedEmail = maskEmailAddress(email); console.log("maskedEmail:", maskedEmail); form.find("input[name='emailFormMask']").val(maskedEmail); }}function maskEmailAddress (emailAddress) { function mask(str) { var strLen = str.length; if (strLen > 4) { return str.substr(0, 1) + str.substr(1, strLen - 1).replace(/\w/g, '*') + str.substr(-1,1); } return str.replace(/\w/g, '*'); } return emailAddress.replace(/([\w.]+)@([\w.]+)(\.[\w.]+)/g, function (m, p1, p2, p3) { return mask(p1) + '@' + mask(p2) + p3; }); return emailAddress;}form.on('submit', function (e) {e.stopImmediatePropagation();e.preventDefault(); $("form.salesForm button[type='submit']").prop('disabled', true); $(".salesForm .errorMsg").html("").hide();updateComments();updateEmailMask();if (!isValidForm()) { hideBtnLoader("salesForm"); $("form.salesForm button[type='submit']").prop('disabled', false); return false; } else { showBtnLoader("salesForm"); }//fingerprint codeif (typeof (mktVisitorComputedID) != "undefined" && mktVisitorComputedID) {console.log("update User Contact Details on profile");$.ajax({type: "POST",url: "/apps/pan/public/profilemanagement.updatecontactformdetails.json",data: {"mktVisitorId": mktVisitorComputedID,"cntFormFirstName": form.find("input[name='FirstName']").val(),"cntFormLastName": form.find("input[name='LastName']").val(),"cntFormEmail": form.find("input[name='Email']").val(),"cntFormCompany": form.find("input[name='Company']").val(),"_charset_": "UTF-8"},dataType: "json",success: function (data) {console.log("Updated the contact form details successfully", data)},error: function (jqXHR, textStatus, errorThrown) {console.log("Error: Could not update the contact form details.");}});}form.find("input[name='munchkinId']").val(mktoConfig.mktoMunchkinId);if (!form.find("input[name='zip']").is(":visible")) {form.find("input[name='zip']").val("");}$.ajax({type: "POST",url: mktoConfig.mktoFormSubmitEndPoint,data: form.serialize(),dataType: 'json',success: function (data) {if (data.success) {hideBtnLoader("salesForm");if (typeof _satellite != 'undefined' && _satellite) {//analytics changestry {webData.formName = form.find("input[name='FormName']").val();webData.formEvent = "form-complete";} catch (e) {console.log(e);}_satellite.track('aemFormSubmit');}var $activeFlyout = $flyout.find('.flyout-container.active')$activeFlyout.find('.step-1').hide()$activeFlyout.find('.step-2').show()} else { hideBtnLoader("salesForm"); $("form.salesForm button[type='submit']").prop('disabled', false); var errorMessage = "Soumission du formulaire échouée"; $(".salesForm .errorMsg").html("").html(errorMessage).show(); } }, error: function(jqXHR, textStatus, errorThrown) { console.log("Error: Could not post the form."); hideBtnLoader("salesForm"); $("form.salesForm button[type='submit']").prop('disabled', false); var errorMessage = "Soumission du formulaire échouée"; $(".salesForm .errorMsg").html("").html(errorMessage).show(); }});});$('.btn-open-flyout').on('click', function () {$('.flyout form input,.flyout form select').each(function () {console.log("field value =>" ,$(this).val());if($(this).val() && $(this).val().length > 0)$(this).siblings('.placeholder').hide();});});$('.placeholder').on('click', function () {$(this).siblings('input').trigger('focus');$(this).siblings('select').trigger("click");console.log("clicked on placeholder");});$('.flyout form input,.flyout form select').on('focus',function () {$(this).siblings('.placeholder').hide();console.log("focused on input");});$('.flyout form input,.flyout form select').on('blur',function () {console.log("on blur - ");var $this = $(this);if ($this.val().length == 0)$(this).siblings('.placeholder').show();});});$(".salesForm #field3[name~='Company']").on('focus',function () {var clearbitCss = $("link[href='/etc/clientlibs/pan-clearbit.min.css']").lengthif (!clearbitCss) {$("
", {rel: "stylesheet",type: "text/css",href: "/etc/clientlibs/pan-clearbit.min.css",preload: true}).appendTo("head");}});}