send email

This commit is contained in:
subashGamer21
2025-01-13 13:51:48 +05:45
parent 60cd431f83
commit 9fad4f5106
14 changed files with 7878 additions and 62 deletions

9
js/custom.js Normal file
View File

@ -0,0 +1,9 @@
document.getElementById("contact-form").addEventListener("submit", function(event) {
event.preventDefault(); // Prevents form from submitting immediately
// Display the alert message
if (confirm("Booking has been confirmed!")) {
// If OK is pressed, redirect to another page
window.location.href = "car-grid.php";
}
});