diff --git a/server/frontend/auth/login.js b/server/frontend/auth/login.js index b16f236..5403018 100644 --- a/server/frontend/auth/login.js +++ b/server/frontend/auth/login.js @@ -4,7 +4,7 @@ function getToken() { function tokenCheck(){ const token = getToken(); if (token) { - window.location.href = "http://localhost:5500/server/frontend/main/index.html"; + window.location.href = "https://ru.homyk.space/main"; } } document.getElementById('loginForm').addEventListener('submit', async function (e) { @@ -14,7 +14,7 @@ document.getElementById('loginForm').addEventListener('submit', async function ( password }; try { - const response = await fetch("http://localhost:8000/api/auth", { + const response = await fetch("https://ru.homyk.space/api/auth", { method: "POST", headers: { "Content-Type": "application/x-www-form-urlencoded", @@ -29,7 +29,7 @@ document.getElementById('loginForm').addEventListener('submit', async function ( // в sessionstorage до перезахода в браузер( sessionStorage.setItem("token", data.access_token); - window.location.href = 'http://localhost:5500/server/frontend/main/index.html'; + window.location.href = 'https://ru.homyk.space/main'; } else { //парсинг и вывод ошибок, если есть if (Array.isArray(data.detail)) { const messages = data.detail.map(e => { diff --git a/server/frontend/main/api.js b/server/frontend/main/api.js index 52e2bf3..665cf5d 100644 --- a/server/frontend/main/api.js +++ b/server/frontend/main/api.js @@ -4,7 +4,7 @@ function getToken() { function tokenCheck(){ const token = getToken(); if (!token) { - window.location.href = "http://localhost:5500/server/frontend/auth/login.html"; + window.location.href = "https://ru.homyk.space"; } }