not needed stuff removed

This commit is contained in:
Ryan
2025-03-19 17:06:39 -04:00
committed by GitHub
parent 285788dfda
commit b931e5c607
4 changed files with 8 additions and 10 deletions

View File

@@ -15,7 +15,6 @@ function initAuth() {
username: document.getElementById("loginUsername").value.trim(),
password: document.getElementById("loginPassword").value.trim()
};
console.log("Sending login data:", formData);
// Include CSRF token header with login
sendRequest("auth.php", "POST", formData, { "X-CSRF-Token": window.csrfToken })
.then(data => {