intake/web/html/login.html
2025-02-07 14:37:36 -08:00

18 lines
352 B
HTML

{{ define "title" }}Intake - Login{{ end }}
{{ define "content" -}}
<article class="center">
<form method="post" action="/login">
<p>
<input name="password" type="password"/>
</p>
<button
hx-post="/login"
hx-target="#errors"
hx-swap="innerHTML"
>Submit</button>
</form>
<p id="errors">{{ .Error }}</p>
</article>
{{ end }}