From 3921db6166e2da895257496bb76dd115556699d3 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sat, 29 Mar 2025 11:12:53 +0300 Subject: init --- components/auth.html | 22 ++++++++++++++++++++++ components/error.html | 9 +++++++++ components/index.html | 28 ++++++++++++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 components/auth.html create mode 100644 components/error.html create mode 100644 components/index.html (limited to 'components') diff --git a/components/auth.html b/components/auth.html new file mode 100644 index 0000000..5122919 --- /dev/null +++ b/components/auth.html @@ -0,0 +1,22 @@ +{{define "auth"}} +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ + +
+
+
+{{end}} diff --git a/components/error.html b/components/error.html new file mode 100644 index 0000000..2fe8b70 --- /dev/null +++ b/components/error.html @@ -0,0 +1,9 @@ +{{define "error"}} + + + +{{end}} diff --git a/components/index.html b/components/index.html new file mode 100644 index 0000000..4562550 --- /dev/null +++ b/components/index.html @@ -0,0 +1,28 @@ +{{define "main"}} + + + + Action Points Journal + + + + + + +
+ {{ if not .Username }} +
+ {{ template "auth" }} +
+ {{ else }} +
+ hello user +
+
+ some button +
+ {{ end }} +
+ + +{{end}} -- cgit v1.2.3