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