Files
IDP-Frontend/app/confirm-access/page.tsx

17 lines
551 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import PageContainer from "@/components/PageContainer/PageContainer";
import PageItem from "@/components/PageBlock/PageItem";
import Logo from "@/components/Logo/Logo";
import ConfirmAccessForm from "@/components/ConfirmAccessForm/ConfirmAccessForm";
export default function ConfirmAccessPage() {
return (
<PageContainer center>
<PageItem fullScreenMobile>
<Logo title={"Вход с помощью LogiDex ID"} />
<ConfirmAccessForm />
</PageItem>
</PageContainer>
)
}