const redirectUrl = “https://100kredit.com.ua/vsi-mfo/”;
const sheetApiUrl = “https://script.google.com/macros/s/AKfycbx9llM-u6SyRf9or4P9Yf45S5ukLnOMawl7qfwKS6XHgMj53pUxgFFPzoqJJaoHMVoH/exec”;
document.getElementById(“redirectForm”).addEventListener(“submit”, function(e) {
e.preventDefault();
const phoneInput = document.getElementById(“phoneInput”);
const phoneRaw = phoneInput.value.replace(/\D/g, ”);
if (phoneRaw.length {
window.location.href = redirectUrl;
});
});
document.querySelectorAll(“.redirect”).forEach(function(el) {
el.addEventListener(“click”, function(e) {
e.preventDefault();
window.location.href = redirectUrl;
});
});