From 5c9c3e67fae36730358e7b0bc37c7c0126c80011 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Tue, 23 Apr 2024 08:43:32 +0500 Subject: [PATCH] add login page route --- .gitignore | 1 + frontend/app/api/api-utils.js | 4 ++-- frontend/app/login/page.js | 3 +++ 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 frontend/app/login/page.js diff --git a/.gitignore b/.gitignore index 9f6b5f7..c4672ef 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ venv # VSCode .VSCode +*.code-workspace # NextJS ## dependencies diff --git a/frontend/app/api/api-utils.js b/frontend/app/api/api-utils.js index fc450ae..657be42 100644 --- a/frontend/app/api/api-utils.js +++ b/frontend/app/api/api-utils.js @@ -14,8 +14,8 @@ export const authorize = async (url, data) => { try { const response = await fetch(url, { method: "POST", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify(data), + headers: { "Content-Type": "application/x-www-form-urlencoded" }, + body: data, }); if (response.status !== 200) { throw new Error("Ошибка получения данных"); diff --git a/frontend/app/login/page.js b/frontend/app/login/page.js new file mode 100644 index 0000000..d5dc9e9 --- /dev/null +++ b/frontend/app/login/page.js @@ -0,0 +1,3 @@ +export default () => { + return (

login page

) +} \ No newline at end of file