aboutsummaryrefslogtreecommitdiff
path: root/sklad/login.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'sklad/login.tmpl')
-rw-r--r--sklad/login.tmpl14
1 files changed, 14 insertions, 0 deletions
diff --git a/sklad/login.tmpl b/sklad/login.tmpl
new file mode 100644
index 0000000..4df6c3a
--- /dev/null
+++ b/sklad/login.tmpl
@@ -0,0 +1,14 @@
+{{ define "Title" }}Přihlášení{{ end }}
+{{ define "Content" }}
+
+<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 }}