From 1a57267a17c2fc17fb6e104846fabc3e363c326c Mon Sep 17 00:00:00 2001 From: Emile Date: Fri, 16 Aug 2024 19:50:26 +0200 Subject: initial commit --- templates/login.html | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 templates/login.html (limited to 'templates/login.html') diff --git a/templates/login.html b/templates/login.html new file mode 100644 index 0000000..a4fc358 --- /dev/null +++ b/templates/login.html @@ -0,0 +1,41 @@ +{{ define "login" }} + +{{ template "head" . }} + + {{ template "nav" . }} + + +

Login

+ + {{ if .err }}{{ .err }}{{ end }} + {{ if .logged_in }} + Already logged in! Return home + {{ else }} +
+ + + + + + + + + + + + + + + + + + +
{{ .res }}
+
+ Not registered yet? Register Now! + {{ end }} + + + +{{ template "footer" . }} +{{ end }} -- cgit 1.4.1