Styled with tailwind css

This commit is contained in:
2024-04-01 14:22:59 +02:00
parent 959e1e96b3
commit a730e11b4a
17 changed files with 1131 additions and 109 deletions

View File

@ -1,11 +1,11 @@
{{define "page-content"}}
<h2>Anmeldung</h2>
<form>
<div>
<input name="username" placeholder="Benutzername" type="text" />
<input name="password" placeholder="Passwort" type="password" />
<div class="btn-area">
<input class="w-full" name="username" placeholder="Benutzername" type="text" />
<input class="w-full" name="password" placeholder="Passwort" type="password" />
</div>
<input type="submit" value="Anmelden" hx-post="/login/" hx-target="#page-content" />
<input class="action-btn" type="submit" value="Anmelden" hx-post="/login/" hx-target="#page-content" />
</form>
{{end}}