diff options
author | Robby Zambito <contact@robbyzambito.me> | 2025-08-06 01:35:37 -0400 |
---|---|---|
committer | Robby Zambito <contact@robbyzambito.me> | 2025-08-06 01:35:46 -0400 |
commit | f21d469e1419c716cd7d89658c4f8d36fe271ba9 (patch) | |
tree | 81d815cbd04db06120ea82f8d548cd6ea33051a2 /static | |
parent | aa67960fd63d73e52719be738f5344aa14db6b84 (diff) |
Log login attempts
Diffstat (limited to 'static')
-rw-r--r-- | static/login-script.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 |