mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 18:32:20 +00:00
13 lines
276 B
TypeScript
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>
|
|
);
|
|
}
|