Files
zitadel/apps/login/app/(login)/username/page.tsx
2023-05-17 13:46:44 +02:00

14 lines
290 B
TypeScript

"use client";
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>
);
}