honk/views/login.html

12 lines
345 B
HTML

{{ template "header.html" . }}
<main>
<div class="info">
{{ .LoginMsg }}
<form action="/dologin" method="POST">
<p><input tabindex=1 type="text" name="username" autocomplete=off> - username
<p><input tabindex=1 type="password" name="password"> - password
<p><button tabindex=1 name="login" value="login">login</button>
</form>
</div>
</main>