feat: login form as a client component, theme toggle
This commit is contained in:
15
app/create-id/page.tsx
Normal file
15
app/create-id/page.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
import LoginForm from "@/components/LoginForm/LoginForm";
|
||||
import Logo from "@/components/Logo/Logo";
|
||||
import PageItem from "@/components/PageBlock/PageItem";
|
||||
import PageContainer from "@/components/PageContainer/PageContainer";
|
||||
|
||||
export default function CreateIdPage() {
|
||||
return (
|
||||
<PageContainer center>
|
||||
<PageItem>
|
||||
<Logo title={"Создание аккаунта"} />
|
||||
<LoginForm isCreatingId />
|
||||
</PageItem>
|
||||
</PageContainer>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user