{"form":{"company_id":1,"slug":"HB3LSnnCqJDtdEm8qN50","name":"Lime Connect - Book a demo (NL)","success_message":"<header id=\"header\">\n<h4>Klaar!<\/h4>\n\n<h2>Bedankt voor uw demo-aanvraag<\/h2>\n\n<p>We nemen binnenkort contact met u op om een geschikt moment af te stemmen.<\/p>\n\n<p>In de tussentijd kunt u alvast een eerste indruk krijgen. Op onze website vindt u voorbeelden en praktijkcases.<\/p>\n\n<p>We kijken uit naar het gesprek.<\/p>\n<\/header>","confirm_text":"<p>Door uw e-mailadres in te voeren, gaat u ermee akkoord onze marketingaanbiedingen te ontvangen in overeenstemming met ons&nbsp;<a href=\"https:\/\/connect.lime-technologies.com\/nl\/legal\/privacy-policy\/\" target=\"_blank\">Privacybeleid<\/a>.<\/p>\n\n<p dir=\"auto\">Verplichte velden zijn gemarkeerd met *<\/p>\n\n<p dir=\"auto\">Deel nooit gevoelige informatie (creditcardnummers, burgerservicenummers, wachtwoorden) via dit formulier.<\/p>\n\n<p dir=\"auto\">Deze site wordt beschermd door reCAPTCHA en het&nbsp;<a href=\"https:\/\/policies.google.com\/privacy?hl=nl\" target=\"_blank\">Privacybeleid<\/a>&nbsp;en de&nbsp;<a href=\"https:\/\/policies.google.com\/terms?hl=nl\" target=\"_blank\">Servicevoorwaarden<\/a>&nbsp;van Google zijn van toepassing.<\/p>","must_confirm":true,"bankid_ssn_field":null,"require_bankid":false,"require_bankid_unlock":false,"bankid_cert_token":null,"confirmation_content":null,"google_analytics_id":null,"heading":null,"primary_color":null,"show_progress":false,"theme":null,"locale":"nl","skip_confirmation":true,"require_captcha":true,"last_viewed_at":"2026-08-25T00:07:47.922326Z","transition":null,"css":"\/* GLOBAL OVERRIDES *\/\n\n\/* the generic alert for validation *\/\n.validation-messages {\n  display: none !important;\n}\n\n\/* remove floating labels *\/\n.simpliform-content-wrapper .step.active .form-field:not([data-type=\"CheckboxField\"]) .label-wrap {\n  display: none !important;\n}\n.simpliform-content-wrapper .form-control::placeholder {\n  opacity: 1 !important;\n}\n\n\/* bring inputs closer and in relative distance *\/\n.simpliform-content-wrapper .step.active {\n\tgap: 0 .5rem;\n}\n\n\/* LAYOUT *\/\n\/* places company size and industry in one row *\/\n.two-cols {\n  grid-column: span 6 \/ span 6;\n}\n\n\/* place checkboxes in columns *\/\n.form-field[data-type=\"CheckboxField\"] .form-group {\n  display: grid;\n  grid-template-columns: repeat(2, 1fr);\n  gap: .1rem .4rem;\n  padding-top: .5rem;\n}\n\n.form-group.pull-right .checkbox label > div > p:nth-of-type(2),\n.form-group.pull-right .checkbox label > div > p:nth-of-type(3),\n.form-group.pull-right .checkbox label > div > p:nth-of-type(4) {\n    display: none !important;\n}\n\n.simpliform-content-wrapper .step.active .form-field[data-type=\"CheckboxField\"] {\n    margin-top: 2rem;\n    font-size: .9rem;\n}\n.simpliform-content-wrapper .step.active .form-field[data-type=\"CheckboxField\"] .label-wrap {\n    left: 0 !important;\n    font-size: 1.3rem !important;\n}\n\n.help-block {\n    display: block !important;\n    font-size: .8rem;\n}\n\n.pull-right {\n    margin-top: 1rem;\n    font-size: .8rem;\n}\n\n.submit-btn {\n    width: 100%;\n}","javascript":"var self = this;\n\n\/\/ TRACKING PART\nconst EMAIL_ID = 'email';\nconst SUBMIT_TEXT = 'Boek je gratis demo'\nconst PRESET_SUBMIT = 'Verzenden';\nconst PRESET_SELECT = '- Choose an option -';\n\nconst isTest = (formData) => {\n    const emailId = Object.keys(formData).find(id => formData[id].name === EMAIL_ID);\n    const emailField = formData[emailId];\n    return emailField ? emailField.value.includes('@lime.tech') : false;\n}\n\nvar INTERNAL_HOSTS = [\n    'connect.lime-technologies.com',\n    'app.lime-connect.com',\n    'docs.lime-connect.com',\n];\n\nthis.onBeforeSubmit(function () {\n    var firstTP = {};\n    try {\n        if (typeof window.ltGetAllSourceEntries === 'function') {\n            var allTPS = JSON.parse(window.ltGetAllSourceEntries()) || [];\n            firstTP = allTPS.filter(function (tp) {\n                return INTERNAL_HOSTS.indexOf(tp.source) === -1;\n            })[0] || allTPS[0] || {};\n        }\n    } catch (e) {}\n    self.setFieldValue(\"wp_utm_source\", firstTP.source || '');\n    self.setFieldValue(\"wp_utm_medium\", firstTP.medium || '');\n    self.setFieldValue(\"wp_utm_campaign\", firstTP.campaign || '');\n    return Promise.resolve(true);\n});\n\n\nthis.onSubmitted(function () {\n    if (isTest(self.formData)) return;\n    if (window.dataLayer) {\n        window.dataLayer.push({\n            formName: 'demo_lime_connect',\n            event: 'form_submitted'\n        });\n    }\n});\n\n\n\nthis._formsEl.addEventListener('focusin', function () {\n  window.dataLayer = window.dataLayer || [];\n  window.dataLayer.push({\n    event: 'form_start',\n    formName: 'demo_lime_connect',\n  });\n}, { once: true });\n\n\/\/ some hacky way since there is no validationError listener on the VUE form for now\nnew MutationObserver(function (muts) {\n  for (const m of muts) {\n    const wasInvalid = m.oldValue === 'true';\n    const isInvalid = m.target.getAttribute('aria-invalid') === 'true';\n    if (isInvalid && !wasInvalid) {\n        window.dataLayer = window.dataLayer || [];\n        window.dataLayer.push({\n            event: 'form_validation_error',\n            formName: 'demo_lime_connect',\n            step: self.currentStep.index,\n            field: m.target.name || m.target.id\n        });\n    }\n  }\n}).observe(this._formsEl, {\n  attributes: true,\n  attributeFilter: ['aria-invalid'],\n  attributeOldValue: true,   \/\/ <-- the key addition\n  subtree: true\n});\n\n\/\/ FROM FAST TRACK\nPromise.resolve(self._formReady).then(() => {\n    const hasPrefilledEmail = sessionStorage['lcm-demo-email'];\n    return hasPrefilledEmail ? self.setFieldValue(\"email\", hasPrefilledEmail) : undefined;\n});\n\n\n\/\/ LAYOUT\ndocument.querySelectorAll('.submit-btn span span').forEach(el => {\n  if (el.textContent.trim() === PRESET_SUBMIT) {\n    el.textContent = SUBMIT_TEXT;\n  }\n});\n    \ndocument.querySelectorAll('.form-field[data-type=\"SelectField\"]').forEach(field => {\n  const label = field.querySelector('.control-label');\n  const placeholderOption = field.querySelector('select option[disabled][value=\"\"]');\n\n  if (!label || !placeholderOption) return;\n\n  \/\/ Clone the label so we can strip the \"*\" required marker without touching the real DOM\n  const clone = label.cloneNode(true);\n  const requiredMarker = clone.querySelector('.is-required');\n  if (requiredMarker) requiredMarker.remove();\n\n  const labelText = clone.textContent.trim();\n\n  if (placeholderOption.textContent.trim() === PRESET_SELECT) {\n    placeholderOption.textContent = labelText;\n  }\n});","lime_sign_providers":null,"disable_search_indexing":0,"bankid_authentication_ssn_field":null,"endpoint":"https:\/\/internal.lime-forms.com\/forms\/HB3LSnnCqJDtdEm8qN50","logo_url":"","logo_link":"","base_url":"https:\/\/internal.lime-forms.com","bankid_api_url":"https:\/\/bankid.lime-technologies.com\/api\/v2\/","lime_signatures_base_url":null,"simpliform_version":"2.149.1","csrf_token":"DLxwahsKhRb9PocYwSHXKCS7UEV0bmCsnerCa4wp","captcha_available":true,"esignatures_provider":null,"google_maps_identifier":"","google_recaptcha_site_key":"6LdXOY0UAAAAAKrnZHZAFpQ-oy2SoNG76r3eDV5L","default_date_format":"yyyy-mm-dd","modules":[{"name":"Enter your information","heading":"Enter your information","description":null,"next_module":"GO_TO_CONFIRMATION","uuid":"08ae69ee-afef-457a-8f1e-ca72cf466a86","parts":[{"id":7185,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_nonce","value":null,"uuid":"7d5e646d-6b7a-4232-8c54-32647abd31ee","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7186,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_current_page","value":null,"uuid":"5d3f7446-ade5-4683-bad8-bfacaaa43f2d","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7187,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_referrer","value":null,"uuid":"3f58cf93-da2c-4659-836c-7cbd0b6452db","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7188,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_source","value":null,"uuid":"ec483097-91ae-4548-aacb-e8370f2f9d89","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7189,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_tp","value":null,"uuid":"3fb5b4bb-997a-4894-9880-d45ff03ada44","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7190,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_qs","value":null,"uuid":"193f0ddf-0d01-47b6-8938-096da60acb8d","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7191,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_utm_source","value":null,"uuid":"780fa6eb-be84-44da-bbfa-ad103ac43d36","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7192,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_utm_medium","value":null,"uuid":"f0ff6a0c-5f9e-4670-bea0-a89d7eb2e7c2","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7193,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_utm_campaign","value":null,"uuid":"27be7fdd-7889-44f4-afa7-530f95a5839b","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7194,"parent_module_part_id":null,"model_type":"TextField","classes":null,"model":{"show":true,"has_input":true,"label":"Uw naam","name":"name","placeholder":"Uw naam","uuid":"e1d5fbe0-c35d-4f15-b30c-fd69c47cfce5","required":true,"helptext":null,"disabled":false,"show_in_confirmation":false,"min_length":null,"max_length":null,"hide_label":0,"hide_placeholder":0,"regex_id":null,"regex_message":null,"autocomplete":"name","regex":null},"children":[]},{"id":7195,"parent_module_part_id":null,"model_type":"EmailField","classes":"two-cols","model":{"show":true,"has_input":true,"label":"Uw zakelijk e-mailadres","name":"email","placeholder":"Uw zakelijk e-mailadres","uuid":"c1bac1a9-f31d-46c5-847b-9ab5678dc8f3","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"hide_label":0,"hide_placeholder":0,"autocomplete":"email"},"children":[]},{"id":7196,"parent_module_part_id":null,"model_type":"TextField","classes":"two-cols","model":{"show":true,"has_input":true,"label":"Uw telefoonnummer","name":"phone","placeholder":"Uw telefoonnummer","uuid":"b4cba7e4-4307-4c3b-8bb8-591cc3df3eb4","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"min_length":null,"max_length":null,"hide_label":0,"hide_placeholder":0,"regex_id":null,"regex_message":null,"autocomplete":"tel","regex":null},"children":[]},{"id":7197,"parent_module_part_id":null,"model_type":"TextField","classes":null,"model":{"show":true,"has_input":true,"label":"Bedrijfsnaam","name":"company","placeholder":"Bedrijfsnaam","uuid":"216e49aa-2e38-4302-9628-ff782c8e16f7","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"min_length":null,"max_length":null,"hide_label":0,"hide_placeholder":0,"regex_id":null,"regex_message":null,"autocomplete":"organization","regex":null},"children":[]},{"id":7198,"parent_module_part_id":null,"model_type":"SelectField","classes":"two-cols","model":{"show":true,"has_input":true,"label":"Bedrijfsgrootte","name":"company_size","uuid":"d6681d3e-2a23-4b2b-9072-5f356d159690","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"initial_value":null,"hide_label":0,"options":[{"text":"1-9","value":"1-9"},{"text":"10-99","value":"10-99"},{"text":"100-499","value":"100-499"},{"text":"500-4999","value":"500-4999"},{"text":"5000+","value":"5000+"}]},"children":[]},{"id":7199,"parent_module_part_id":null,"model_type":"SelectField","classes":"two-cols","model":{"show":true,"has_input":true,"label":"In welke branche bent u werkzaam?","name":"industry","uuid":"2156e028-08a6-43e6-b74b-360a2c5f507c","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"initial_value":null,"hide_label":0,"options":[{"text":"Automotive","value":"Automotive"},{"text":"Onderwijs","value":"Education"},{"text":"Energie","value":"Energy"},{"text":"Techniek","value":"Engineering"},{"text":"Financi\u00eble dienstverlening","value":"Financial Services"},{"text":"Overheid & non-profit","value":"Government & Non-Profit"},{"text":"Gezondheidszorg","value":"Healthcare"},{"text":"Verzekeringen","value":"Insurance Services"},{"text":"IT-diensten & consultancy","value":"IT-Services & Consultancy"},{"text":"Productie","value":"Manufacturing"},{"text":"Marketing & reclame","value":"Marketing & Advertising"},{"text":"Media & telecommunicatie","value":"Media & Telecommunications"},{"text":"Overig","value":"Other"},{"text":"Zakelijke & professionele dienstverlening","value":"Professional & Business Support Services"},{"text":"Vastgoed","value":"Real Estate"},{"text":"Detailhandel","value":"Retail"},{"text":"Software","value":"Software"},{"text":"Transport & logistiek","value":"Transport & Logistics"},{"text":"Reizen, horeca & toerisme","value":"Travel, Hospitality & Tourism"}]},"children":[]},{"id":7200,"parent_module_part_id":null,"model_type":"CheckboxField","classes":null,"model":{"id":250,"show":true,"has_input":true,"label":"Over welke oplossingen wilt u meer weten?","name":"solutions_learn_more","uuid":"eb88af5f-c601-4762-83c4-91c11a826291","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"hide_label":0,"options":[{"id":1450,"text":"Connect AI (Agent & Copilot)","value":"Connect AI (Agent & Copilot)","is_initial_value":false},{"id":1451,"text":"Berichtenkanalen","value":"Messaging Channels","is_initial_value":false},{"id":1452,"text":"WhatsApp Business API","value":"WhatsApp Business API","is_initial_value":false},{"id":1453,"text":"Live-chat op website","value":"Website Live-Chat","is_initial_value":false},{"id":1454,"text":"WhatsApp-campagnes","value":"WhatsApp Campaigns","is_initial_value":false},{"id":1455,"text":"Workflows","value":"Workflows","is_initial_value":false}]},"children":[]},{"id":7201,"parent_module_part_id":null,"model_type":"SelectField","classes":null,"model":{"show":true,"has_input":true,"label":"Hoe heeft u over ons gehoord?","name":"how_did_you_hear_about_us","uuid":"0a4a7d7d-bcca-41cd-aeb6-f7ef7db4dd8e","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"initial_value":null,"hide_label":0,"options":[{"text":"Zoekmachine (Google, Bing, enz.)","value":"Google (Search)"},{"text":"AI-zoekopdracht (ChatGPT, Claude, Gemini, enz.)","value":"AI Search (e.g. ChatGPT, Perplexity, Gemini)"},{"text":"Advertentie (Google Ads, LinkedIn Ads, Meta Ads)","value":"Advertising (e.g. Google Ads, LinkedIn Ads)"},{"text":"Social media (LinkedIn, Instagram)","value":"Social Media (e.g. LinkedIn, Instagram, Facebook)"},{"text":"Persoonlijke aanbeveling (collega, kennis, bureau)","value":"Personal Recommendation (colleague, friend)"},{"text":"Reviewplatform (OMR Reviews, Capterra, enz.)","value":"Review Platform (e.g. OMR Reviews, Capterra, G2)"},{"text":"Evenement (beurs, webinar)","value":"Event (trade fair, webinar)"},{"text":"Al bekend (eerder gebruik)","value":"Already Familiar (previous usage or former employer)"},{"text":"Lime Connect-medewerker","value":"Lime Connect Employee (Outbound)"},{"text":"Overig","value":"Other"}]},"children":[]},{"id":7202,"parent_module_part_id":null,"model_type":"TextAreaField","classes":null,"model":{"show":true,"has_input":true,"label":"Aanvullende informatie (optioneel)","name":"additional_information","placeholder":"Aanvullende informatie (optioneel)","uuid":"cfac7982-eec9-4a86-a922-e7f6ba8f4b0a","required":false,"helptext":null,"disabled":false,"show_in_confirmation":true,"min_length":null,"max_length":null,"hide_label":0,"hide_placeholder":0},"children":[]}],"conditional_groups":[]}]}}