mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
frontend: add loginNeeded component
This commit is contained in:
parent
dcce13b86b
commit
b9af35ee75
3 changed files with 27 additions and 1 deletions
15
frontend/app/components/LogInNeeded/LogInNeeded.jsx
Normal file
15
frontend/app/components/LogInNeeded/LogInNeeded.jsx
Normal file
|
@ -0,0 +1,15 @@
|
|||
"use client";
|
||||
|
||||
import Link from "next/link";
|
||||
|
||||
export const LogInNeeded = (props) => {
|
||||
return (
|
||||
<div className="absolute padding error center middle round">
|
||||
<i className="extra">no_accounts</i>
|
||||
<h5>Требуется авторизация</h5>
|
||||
<p>
|
||||
Для доступа к этой вкладке требуется авторизация в аккаунте anixart
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
};
|
|
@ -17,7 +17,8 @@ body {
|
|||
}
|
||||
} */
|
||||
|
||||
body, nav.left{
|
||||
body, nav.left, main{
|
||||
transition: background .2s;
|
||||
transform-origin: left;
|
||||
min-height: 100dvh;
|
||||
}
|
||||
|
|
10
frontend/app/history/page.js
Normal file
10
frontend/app/history/page.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
"use client";
|
||||
|
||||
import { LogInNeeded } from "@/app/components/LogInNeeded/LogInNeeded";
|
||||
import { useUserStore } from "@/app/store/user-store";
|
||||
|
||||
export default History = () => {
|
||||
const userStore = useUserStore();
|
||||
|
||||
return <>{!userStore.isAuth ? <LogInNeeded /> : ""}</>;
|
||||
};
|
Loading…
Add table
Reference in a new issue