sklad/cmd/sklad/login.tmpl

18 lines
419 B
Cheetah

{{ 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 }}