session create with challenge

This commit is contained in:
Max Peintner
2023-06-28 11:29:56 +02:00
parent 4e97744879
commit 4cddb79d1b
8 changed files with 46 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
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>
);
}