Move auth template to page

This commit is contained in:
Mirai Kumiko 2025-06-21 12:16:27 +02:00
parent 1b404b3ea9
commit 5cb937c14c
Signed by: miraikumiko
GPG key ID: 3F178B1B5E0CB278
3 changed files with 0 additions and 6 deletions

View file

@ -1,9 +0,0 @@
<main class="flex min-h-screen items-center justify-center">
<form class="flex flex-col gap-2" action="/auth/sign_in" method="post">
<label for="email">E-mail address *</label>
<input id="email" name="email" type="email" maxlength="50" required />
<label for="password">Password *</label>
<input id="password" name="password" type="password" minlength="8" maxlength="50" required />
<button class="text-white bg-black py-2 border" type="submit">Log in</button>
</form>
</main>