summaryrefslogtreecommitdiffstats
path: root/templates/login.html.template
blob: 53ab905df16c65e84585197e6cb25c439bf0f3eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{{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">
		<input type="hidden" name="redirect" value="{{.Redirect}}">
	</form>
</section>