Trust | Cupcakes | Lessons From The Bible | Episode 12
Ask a grownup to help make Dusty's delicious peanut butter and bacon cupcakes! The perfect treat for both dogs and people!
Because of Jesus I can Trust God! (Kids' Bible Lesson: Abraham)
// 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;
}
});
});
});