Landing Page Generator
Form Generator Landing Page
`;
const blob = new Blob([html], { type: "text/html" });
const link = document.createElement("a");
link.href = URL.createObjectURL(blob);
link.download = "landing-page.html";
link.click();
}
function startCountdown() {
let minutes = parseInt(getVal("countdown"));
let seconds = 0;
const timer = document.getElementById("countdown-timer");
const interval = setInterval(() => {
if (seconds === 0) {
if (minutes === 0) {
clearInterval(interval);
timer.innerHTML = "Waktu habis!";
return;
}
minutes--;
seconds = 59;
} else {
seconds--;
}
timer.innerHTML = "Sisa waktu: " + String(minutes).padStart(2, '0') + ":" + String(seconds).padStart(2, '0');
}, 1000);
}