aboutsummaryrefslogtreecommitdiff
path: root/sklad/login.tmpl
blob: 8dbca84190e306ff950c360464c22c8463cc57a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "Title" }}Přihlášení{{ end }}
{{ define "Content" }}

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

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

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

{{ end }}