aboutsummaryrefslogtreecommitdiff
path: root/sklad/login.tmpl
blob: c34ab531dd698f636d592eab001569c4cb28071b (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 }}