$w.onReady(function () { $w("#botaoEnviar").onClick(() => { let nome = ""; if ($w("#checkboxMari").checked) nome = "Mari"; if ($w("#checkboxVitor").checked) nome = "Vitor"; if ($w("#checkboxAndrea").checked) nome = "Andrea"; const dia = $w("#inputDia").value; const mes = $w("#inputMes").value; const ano = $w("#inputAno").value; const hora = $w("#inputHora").value; const dataCompleta = `${dia}/${mes}/${ano} ${hora}`; fetch("https://hooks.zapier.com/hooks/catch/23789490/u26pywr/", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ nome: nome, horario: dataCompleta }) }) .then(() => { $w("#botaoEnviar").label = "Enviado!"; setTimeout(() => { $w("#botaoEnviar").label = "Enviar"; }, 2000); }); }); });
top of page

NOSSOS TELEVISORES

bottom of page