views/login.html (view raw)
1 2 3 4 5 6 7 8 9 10 11 |
{{ template "header.html" . }}
<main>
<div class="info">
<form action="/dologin" method="POST">
<p><span class="title">login</span>
<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>
|