Spaces:
Sleeping
Sleeping
File size: 543 Bytes
04f3c79 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
document.getElementById("registration-form").addEventListener("submit", function(event) {
event.preventDefault(); // Prevent the form from submitting
// Collect form data
const name = document.getElementById("name").value;
const mobile = document.getElementById("mobile").value;
const aadhar = document.getElementById("aadhar").value;
console.log("User Registered:", { name, mobile, aadhar });
alert("Registration Successful!");
// You can add code here to send the data to a backend server
});
|