Please feel free to download and make use of these at home, church, or school. The resources work best when paired with the corresponding video (see resource title).
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
// 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;
}
});
});
});