fix: registration

Fix a couple typos in registration JS
This commit is contained in:
Ryan Prather 2025-06-03 12:44:03 -04:00
parent 135a03f8d1
commit 1aed314ae3

View File

@ -1,8 +1,7 @@
// Get references to the form elements // Get references to the form elements
const nameInput = document.getElementById("name"); const nameInput = document.getElementById("registration_form_name");
const emailInput = document.getElementById("emailAddress"); const emailInput = document.getElementById("registration_form_email");
const passwordInput = document.getElementById("password"); const passwordInput = document.getElementById("registration_form_plainPassword");
const confirmPasswordInput = document.getElementById("confirmPassword");
const csrfToken = document.getElementById("registration_form__token").value; const csrfToken = document.getElementById("registration_form__token").value;
// Add event listeners to the form // Add event listeners to the form
@ -18,25 +17,18 @@ function handleSubmit(event) {
const name = nameInput.value; const name = nameInput.value;
const email = emailInput.value; const email = emailInput.value;
const password = passwordInput.value; const password = passwordInput.value;
const confirmPassword = confirmPasswordInput.value;
if (name === "" || email === "" || password === "") { if (name === "" || email === "" || password === "") {
alert("Please fill in all fields."); alert("Please fill in all fields.");
return; return;
} }
if (password !== confirmPassword) {
alert("Passwords do not match.");
return;
}
// Send data to server for processing // Send data to server for processing
const data = { const data = {
"name": name, "name": name,
"email": email, "email": email,
"password": password,
"plainPassword": password, "plainPassword": password,
"csrf_token": csrfToken "_token": csrfToken
}; };
fetch("/register", { fetch("/register", {