Files
zitadel/apps/login/app/(login)/username/page.tsx
2023-05-22 16:28:47 +02:00

13 lines
276 B
TypeScript

import UsernameForm from "#/ui/UsernameForm";
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 />
</div>
);
}