blob: 0cf34695a4be1d967c5d652ca589a2643cf27fe4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{{define "head"}}<title>Login</title>{{end}}
<section>
{{if .Error}}
<p class="login-error">Incorrect password</p>
{{end}}
<form class="password-form" action="/login" method="post">
<label class="password-label" for="password">Enter password</label>
<input id="password" class="password" type="password" name="password" autofocus>
</form>
</section>
|