mirror of
https://github.com/Radiquum/AniX.git
synced 2025-05-04 11:59:40 +05: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>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue