intake/web/html/login.html

18 lines
344 B
HTML

{{ define "title" }}Intake - Login{{ end }}
{{ define "content" -}}
<nav 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>
</nav>
{{ end }}