Files
zitadel/apps/login/app/(login)/username/page.tsx

17 lines
401 B
TypeScript
Raw Normal View History

2023-04-04 15:23:14 +02:00
"use client";
2023-04-03 13:39:51 +02:00
2023-04-04 15:23:14 +02:00
import { Button, ButtonVariants } from "#/ui/Button";
import IdentityProviders from "#/ui/IdentityProviders";
import UsernameForm from "#/ui/UsernameForm";
2023-04-03 13:39:51 +02:00
export default function Page() {
return (
<div className="flex flex-col items-center space-y-4">
<h1>Welcome back!</h1>
<p className="ztdl-p">Enter your login data.</p>
<UsernameForm />
2023-04-03 13:39:51 +02:00
</div>
);
}