mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
add login page route
This commit is contained in:
parent
64886347f2
commit
5c9c3e67fa
3 changed files with 6 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,6 +5,7 @@ venv
|
|||
|
||||
# VSCode
|
||||
.VSCode
|
||||
*.code-workspace
|
||||
|
||||
# NextJS
|
||||
## dependencies
|
||||
|
|
|
@ -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("Ошибка получения данных");
|
||||
|
|
3
frontend/app/login/page.js
Normal file
3
frontend/app/login/page.js
Normal file
|
@ -0,0 +1,3 @@
|
|||
export default () => {
|
||||
return (<p>login page</p>)
|
||||
}
|
Loading…
Add table
Reference in a new issue