From 223538f5ffe2c78060b341225956effd3060ff47 Mon Sep 17 00:00:00 2001 From: Ali Date: Fri, 20 Feb 2026 19:15:44 +0900 Subject: [PATCH] dburl geaendert --- public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index 9919618..23034da 100644 --- a/public/index.html +++ b/public/index.html @@ -53,7 +53,7 @@ const endpoint = isRegisterMode ? '/auth/register' : '/auth/login'; try { - const response = await fetch(`http://localhost:5003${endpoint}`, { + const response = await fetch(endpoint, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ username, password })