cpolis/web/templates/login.html

12 lines
325 B
HTML
Raw Normal View History

2024-02-24 09:54:25 +01:00
{{define "page-content"}}
<h2>Anmeldung</h2>
<form>
2024-03-28 08:41:38 +01:00
<div>
<input name="username" placeholder="Benutzername" type="text" />
<input name="password" placeholder="Passwort" type="password" />
</div>
2024-02-24 09:54:25 +01:00
<input type="submit" value="Anmelden" hx-post="/login/" hx-target="#page-content" />
</form>
{{end}}