intake/web/html/login.html

17 lines
341 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>
{{ end }}