/* growform client2 bundle.url: https://assets.growform.co/96896150-mmawu6km/form.bundle.js resolve.source: memory resolve.at: 2026-03-04T12:32:50.638Z form.source: kv cache.age_ms: 5763 fallback_used: false */ ;(function () { var EMBED_TYPE = "iFrame"; var FORM_ID = "69453220e5f4f67ea247be3c"; var FORM_BUNDLE_URL = "https://assets.growform.co/96896150-mmawu6km/form.bundle.js"; // injected by worker (KV/memory/fallback) var FORM_DATA = {"data":{"form":{"_id":"69453220e5f4f67ea247be3c","options":{"numberOfSteps":5,"dateFormat":"DD/MM/YYYY","progressBar":{"enable":false},"continueButton":{"continueText":"Continue","submitText":"Submit","backText":"Back"},"customStyles":{"width":{"unit":"px","value":580},"parentContainerMinHeight":{"value":0,"unit":"px"},"parentBackgroundImage":{"imageInitialHeight":1362,"imageInitialWidth":2066,"imageHeight":1362,"imageWidth":2066,"imageUrl":"https://res.cloudinary.com/dqnjggegp/image/upload/v1597337140/uploads/qmsfk98ank3wfp1ehvyg.jpg"},"headerMarginTop":10,"parentBackgroundColor":"#ffffff","innerFormBackgroundColor":"#ffffff","innerFormBackgroundTransparency":"","primaryColor":"#ffe556","bodyTextColor":"#000000","parentContainerBackgroundType":"none","innerFormBackgroundType":"none","buttonBorderColor":"#ff7500","buttonColorSelected":"#ffa659","buttonBorderColorSelected":"#ff7500","footerMarginBottom":10,"errorColor":"#ff4e4e","buttonColor":"#ff7500","buttonTextColor":"#ffffff","inputLabelColor":"#a3a3a3","inputTextColor":"#000000","defaultFont":"Manrope","sq_buttonFont":"Poppins","sq_buttonFontSize":15,"showShadows":"No","sq_buttonTextColor":"#343434","sq_buttonColor":"#FFFFFF","sq_buttonColorSelected":"#FFFFFF","sq_buttonBorderColor":"#DADADA","sq_buttonBorderColorSelected":"primary","sq_buttonBannerColor":"#ffffff","rt_buttonFont":"Manrope","rt_buttonFontSize":15,"rt_buttonColor":"#FFFFFF","rt_buttonColorSelected":"#FFFFFF","rt_buttonTextColor":"#343434","rt_buttonBorderColor":"#DADADA","rt_buttonBorderColorSelected":"primary","inputLabelFont":"Manrope","inputFontSize":15,"continueSubmitButtonFontSize":15,"fullModeBackgroundColor":"#E7F3FA","canvasSetup":"minimal","formMarginSide":1,"continueSubmitButtonFont":"Manrope","continueButtonTextColor":"#ffffff","continueButtonColor":"#d4af37"},"localization":{"dateFormat":"MM/DD/YYYY"},"exportTransparentBackground":false,"customScript":"","customRedirectUrls":[{"url":""}],"logo":null},"fields":{"Decorative Header_52363373085874":{"type":"Decorative Header","value":"Thanks for your enquiry!","width":12,"step":"complete","sortOrder":1,"fieldStyle":{"fontSize":{"value":19,"unit":"px"},"fontWeight":"Bold","color":"#ffffff","fontFamily":"Manrope"},"margins":{"marginTop":20},"stepId":"complete"},"Decorative_Paragraph_194067845817258":{"type":"Decorative Paragraph","value":"Thanks for getting in touch. We'll be in contact soon.","width":12,"step":"complete","sortOrder":2,"margins":{"marginBottom":60},"stepId":"complete","fieldStyle":{"color":"#ffffff","fontFamily":"Manrope"}},"email_985945710839170":{"type":"Email","label":"What is your email address?","width":12,"stepId":"acd45227cac332d443c4e1db","sortOrder":2},"name_833213670624862":{"type":"Name","label":"What is your name?","width":12,"hideLabel":true,"options":{"Firstname":{"value":null,"errorText":null,"validationRules":{"required":true}},"Lastname":{"value":null,"errorText":null,"validationRules":{"required":true}},"Prefix":{"value":null,"errorText":null}},"stepId":"acd45227cac332d443c4e1db","sortOrder":1,"hidePrefix":true},"phone_204737935999964":{"type":"Phone","label":"What is your phone number?","width":12,"stepId":"acd45227cac332d443c4e1db","sortOrder":3},"datetime_611458434071483":{"type":"DateTime","label":"What time would you like your appointment?","width":12,"stepId":"acd45227cac332d443c4e1db","sortOrder":4},"multi_select_785371860837268":{"type":"Multi Select","width":12,"label":"What type of repair are you interested in?","options":[{"text":"Ring Resizing","id":"3d0c6e858af00ebfe20ff6fe"},{"text":"Watch Repair","id":"788e287dfbbf68a6dc260114"},{"text":"Gemstone Replacement","id":"90c080d8db64d9ebca5f9200"},{"text":"Cleaning & Polishing","image":null,"id":"3e34a6ffab210bf0bc581077"},{"text":"Chain & Link Repair","image":null,"id":"7fb3a8b2d225b6acc5794f0a"},{"text":"Custom Modifications","image":null,"id":"06046f50130ac3724ca6048b"}],"helperText":null,"stepId":"acd45227cac332d443c4e1db","sortOrder":5}},"ownedByUser":"6716770103b287000b686616","formName":"Repair Contact Form","personalisation":{"form_related_to":"(None - start with a blank slate)"},"lastEdited":"2025-12-19T11:11:30.041Z","created":"2025-12-19T11:08:16.534Z","steps":[{"id":"acd45227cac332d443c4e1db","name":"Unnamed step 1","sortOrder":1}],"folderId":"690cad08447fc15cc1c7361a","screenshotUrl":"https://res.cloudinary.com/dqnjggegp/image/upload/v1766142695/growform-production/form-screenshots/69453220e5f4f67ea247be3c.png","leadsCount":4,"isActive":true,"reportedSpam":false,"spamOcr":"First name\nWhat is your email address?\nWhat is your phone number?\nCE\n(201) 555-0123\nLast name\nWhat time would you like your appointment?\nWhat type of repair are you interested in?\nSUBMIT First name What is your email address ? What is your phone number ? CE ( 201 ) 555-0123 Last name What time would you like your appointment ? What type of repair are you interested in ? SUBMIT","__v":0},"accountIsActive":true,"accountIsFreeTrial":false}}; // ---- Utils ---- function safeJSONStringify(obj) { return JSON.stringify(obj) .replace(/<\/(script|style)/gi, '<\\/$1') .replace(//g, '--\\>') .replace(/\u2028/g, '\\u2028') .replace(/\u2029/g, '\\u2029'); } function preloadScript(href) { try { if (!href) return; if (document.querySelector('link[rel="preload"][href="' + href + '"]')) return; var l = document.createElement("link"); l.rel = "preload"; l.as = "script"; l.href = href; l.crossOrigin = ""; // allow cache reuse in iframe document.head.appendChild(l); } catch (_) {} } function parseQuery() { var out = {}; try { if (!window.location.search) return out; var usp = new URLSearchParams(window.location.search); usp.forEach(function (v, k) { out[k] = v; }); } catch (_) {} return out; } function buildIframeHTML(opts) { var html = '\n' + '\n' + '
\n' + ' \n' + ' \n' + ' \n' + '\n' + '\n' + ' \n' + ' \n' + '