summaryrefslogtreecommitdiffstats
path: root/templates/login.html.template
blob: 658d477dad083d94827afb3ec7df655b07f2851f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{define "head"}}<title>Login</title>{{end}}

<p class="login-error">{{.Error}}</p>

<section>
	<div style="display:flex">
		<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>
	</div>
</section>