cpolis/web/templates/login.html

9 lines
295 B
HTML
Raw Normal View History

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