mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +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
|
||||||
.VSCode
|
.VSCode
|
||||||
|
*.code-workspace
|
||||||
|
|
||||||
# NextJS
|
# NextJS
|
||||||
## dependencies
|
## dependencies
|
||||||
|
|
|
@ -14,8 +14,8 @@ export const authorize = async (url, data) => {
|
||||||
try {
|
try {
|
||||||
const response = await fetch(url, {
|
const response = await fetch(url, {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
headers: { "Content-Type": "application/json" },
|
headers: { "Content-Type": "application/x-www-form-urlencoded" },
|
||||||
body: JSON.stringify(data),
|
body: data,
|
||||||
});
|
});
|
||||||
if (response.status !== 200) {
|
if (response.status !== 200) {
|
||||||
throw new Error("Ошибка получения данных");
|
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