18 lines
352 B
HTML
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 }}
|