Add Base setup

This commit is contained in:
Esa Kataja
2024-10-14 23:35:24 +03:00
parent 50f78d4b90
commit 728642e958
13 changed files with 524 additions and 25 deletions
+14
View File
@@ -0,0 +1,14 @@
<div
class="flex flex-col gap-10 justify-center items-center bg-zinc-700 mx-auto max-w-sm p-10 rounded-3xl shadow-2xl variant-glass"
>
<h1 class="h2">Kirjaudu</h1>
<div class="w-full flex flex-col gap-4">
<label for="username" class="label">Käyttäjätunnus</label>
<input class="input" type="text" id="username" placeholder="Käyttäjätunnus" />
</div>
<div class="w-full flex flex-col gap-4">
<label for="password">Salasana</label>
<input class="input" type="password" id="password" placeholder="Salasana" />
</div>
<button type="button" class="btn variant-filled-surface">Kirjaudu</button>
</div>