honk/views/login.html

12 lines
345 B
HTML
Raw Normal View History

2023-01-28 12:03:36 +00:00
{{ 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>