An activity to help kids follow along with the Easter video and learn the events of Christ's death and resurrection.
The Easter Story of Jesus | Animated Bible Story For Kids
// Record when the form was loaded
const formStartTime = Date.now();
form.addEventListener("submit", function(e) {
const timeTaken = (Date.now() - formStartTime) / 1000;
// Block submissions faster than 5 seconds
if (timeTaken < 5) {
e.preventDefault();
alert("Please take a moment to complete the form before submitting.");
return false;
}
});
});
});