First Commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import Stack from "@/src/components/twui/layout/Stack";
|
||||
import LoginForm from "../(partials)/login-form";
|
||||
import Span from "@/src/components/twui/layout/Span";
|
||||
import ArrowedLink from "@/src/components/twui/layout/ArrowedLink";
|
||||
|
||||
export default function LoginFormSection() {
|
||||
return (
|
||||
<Stack className="w-full items-center max-w-3xl mx-auto gap-7">
|
||||
<LoginForm />
|
||||
<Stack className="gap-2 items-center">
|
||||
<Span variant="faded">Received an SSO code already?</Span>
|
||||
<ArrowedLink
|
||||
link={{
|
||||
title: "Complete Login",
|
||||
url: "/auth/sso",
|
||||
}}
|
||||
/>
|
||||
</Stack>
|
||||
</Stack>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user