File size: 459 Bytes
0dff816 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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)
});
|