Release 1.1 #18

Merged
ryan merged 92 commits from 1.1 into main 2025-10-10 23:32:42 -04:00
Showing only changes of commit eb2366ebd8 - Show all commits

View File

@@ -3,7 +3,7 @@ const nameInput = document.getElementById("name");
const emailInput = document.getElementById("emailAddress");
const passwordInput = document.getElementById("password");
const confirmPasswordInput = document.getElementById("confirmPassword");
const csrfToken = document.getElementById("csrfToken").value;
const csrfToken = document.getElementById("registration_form__token").value;
// Add event listeners to the form
const registerBtn = document.querySelector("#register-btn");