From 4d930c0c8cb585979798fac2bb254f991faa62fb Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Mon, 26 Jun 2023 22:26:10 +0200 Subject: feat: Add initial user setup --- templates/login.html | 2 +- templates/media.html | 8 +++++++- templates/register.html | 28 ++++++++++++++++++++++++++++ 3 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 templates/register.html (limited to 'templates') diff --git a/templates/login.html b/templates/login.html index f71d9d3..607faa1 100644 --- a/templates/login.html +++ b/templates/login.html @@ -1,5 +1,5 @@ {{template "layout.html" .}} -{{define "title"}} Register {{end}} +{{define "title"}} Login {{end}} {{define "content"}}
diff --git a/templates/media.html b/templates/media.html index 478d8ae..6302a57 100644 --- a/templates/media.html +++ b/templates/media.html @@ -5,9 +5,15 @@ {{range .Data.Medias}}
+ {{ if .IsVideo }} + + {{ else }}
- +
+ {{ end }}
{{end}} diff --git a/templates/register.html b/templates/register.html new file mode 100644 index 0000000..b026d33 --- /dev/null +++ b/templates/register.html @@ -0,0 +1,28 @@ +{{template "layout.html" .}} +{{define "title"}} Initial Setup {{end}} +{{define "content"}} +

Initial Setup

+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +{{end}} -- cgit v1.2.3