From f21d469e1419c716cd7d89658c4f8d36fe271ba9 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Wed, 6 Aug 2025 01:35:37 -0400 Subject: Log login attempts --- static/login-script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'static/login-script.js') diff --git a/static/login-script.js b/static/login-script.js index da69c7b..e5250bf 100644 --- a/static/login-script.js +++ b/static/login-script.js @@ -12,7 +12,7 @@ const passwordError = document.getElementById('passwordError'); const generalError = document.getElementById('generalError'); // API Configuration -const API_BASE_URL = 'https://api.taskflow.com/v1'; +const API_BASE_URL = '/v1'; const LOGIN_ENDPOINT = `${API_BASE_URL}/auth/login`; // Password visibility toggle -- cgit