fellybikush's picture
Upload 99 files
0dff816 verified
raw
history blame
459 Bytes
document.getElementById("signupForm").addEventListener("submit", function(e) {
e.preventDefault();
const password = document.getElementById("password").value;
const confirmPassword = document.getElementById("confirmPassword").value;
if (password !== confirmPassword) {
alert("Passwords do not match!");
return;
}
alert("Account created successfully for Japanese Motors!");
// Here you can add backend API integration (AJAX/Fetch)
});