From 224ec45238466a9c8a44bcaf54fbbd0453142967 Mon Sep 17 00:00:00 2001 From: Serge RAKOTO HARRY-NAIVO Date: Thu, 7 May 2026 14:27:01 +0200 Subject: [PATCH] feat(cloudflare): point HTML/JS to new Mind4Solutions Worker + Turnstile sitekey Companion change to PR #3a (= Worker code Brevo\xe2\x86\x92Resend on feat/cloudflare-worker-resend-migration). Updates the 3 client-side references that point to the previous Cloudflare Worker (Melissa account) and Turnstile widget, switching them to the fresh Mind4Solutions resources provisioned in Phase D. - js/confirmation.js:20 \xe2\x86\x92 mva-hubspot-proxy.sergemind4s.workers.dev - js/form-handler.js:31 \xe2\x86\x92 mva-hubspot-proxy.sergemind4s.workers.dev - contact.html:145 \xe2\x86\x92 Turnstile sitekey 0x4AAAAAADKk5L_1GV_IS_s9 Refs: WordPress \xe2\x86\x92 static migration plan, Phase B PR #3b. --- contact.html | 2 +- js/confirmation.js | 2 +- js/form-handler.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contact.html b/contact.html index e775dd7..53675ff 100644 --- a/contact.html +++ b/contact.html @@ -142,7 +142,7 @@ -
+
diff --git a/js/confirmation.js b/js/confirmation.js index 40215b2..20ddb08 100644 --- a/js/confirmation.js +++ b/js/confirmation.js @@ -17,7 +17,7 @@ // avec invitation à contacter le support. // ============================================================ -const WORKER_PROXY_URL = 'https://mva-hubspot-proxy.mvaglobalfret.workers.dev'; +const WORKER_PROXY_URL = 'https://mva-hubspot-proxy.sergemind4s.workers.dev'; document.addEventListener('DOMContentLoaded', async () => { const token = new URLSearchParams(window.location.search).get('token'); diff --git a/js/form-handler.js b/js/form-handler.js index 537dd31..c869082 100644 --- a/js/form-handler.js +++ b/js/form-handler.js @@ -28,7 +28,7 @@ if (typeof emailjs !== 'undefined') { // 'https://mva-hubspot-proxy.moncompte.workers.dev' // Tant que cette constante est vide, la vérification doublon est désactivée // (le formulaire s'envoie normalement — aucun blocage). -const WORKER_PROXY_URL = 'https://mva-hubspot-proxy.mvaglobalfret.workers.dev'; +const WORKER_PROXY_URL = 'https://mva-hubspot-proxy.sergemind4s.workers.dev'; document.addEventListener('DOMContentLoaded', () => { const form = document.getElementById('contactForm');