aboutsummaryrefslogtreecommitdiff
path: root/cmd/sklad/login.tmpl
blob: 2c9ffc335b171e011ab4ce2b4f47b37d5a23f5fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "Title" }}Přihlášení{{ end }}
{{ define "HeaderControls" }}<!-- text/template requires content -->{{ end }}
{{ define "Content" }}

<h2>Přihlášení</h2>

<form method=post>
	<label for=password>Heslo:</label>
	<input type=password name=password id=password autofocus
	><input type=submit value="Přihlásit">
</form>

{{ if .IncorrectPassword }}
<p>Bylo zadáno nesprávné heslo.
{{ end }}

{{ end }}