summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorGrailFinder <wohilas@gmail.com>2024-04-20 07:45:00 +0300
committerGrailFinder <wohilas@gmail.com>2024-04-20 07:45:00 +0300
commitb33be53ea9c0be523988a9412fd8e3f6a24782b3 (patch)
tree2f05cbfc78613f1771eb8143105859983cb91750 /components
parentac70f43c3e52e35195353c73af5687b8286ff581 (diff)
Feat: add auth [wip]
Diffstat (limited to 'components')
-rw-r--r--components/error.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/components/error.html b/components/error.html
new file mode 100644
index 0000000..51b6b05
--- /dev/null
+++ b/components/error.html
@@ -0,0 +1,9 @@
+{{define "error"}}
+<a href="/">
+ <div class="bg-orange-100 border-l-4 border-orange-500 text-orange-700 p-4" role="alert">
+ <p class="font-bold">An error from server</p>
+ <p>{{.}}</p>
+ <p>Click this banner to return to main page.</p>
+ </div>
+</a>
+{{end}}