From 17bea88eb3f6e2bc5f63641437a997cc8bd32881 Mon Sep 17 00:00:00 2001 From: Horus3 Date: Fri, 20 Mar 2015 18:05:18 +0100 Subject: Too much CSS for now. --- views/admin.html | 61 +++++++++++++++++++++++++++++++++++++++ views/footer.html | 10 +++++++ views/header.html | 17 +++++++++++ views/index.html | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++++ views/login.html | 62 +++++++++++++++++++++++++++++++++++++++ views/navbar.html | 14 +++++++++ views/register.html | 70 ++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 317 insertions(+) create mode 100644 views/admin.html create mode 100644 views/footer.html create mode 100644 views/header.html create mode 100644 views/login.html create mode 100644 views/navbar.html create mode 100644 views/register.html (limited to 'views') diff --git a/views/admin.html b/views/admin.html new file mode 100644 index 0000000..2dc9b20 --- /dev/null +++ b/views/admin.html @@ -0,0 +1,61 @@ +{{template "header.html"}} +{{template "navbar.html"}} +{{template "jobs_modal.html"}} + +
+
+
+ + +
+
+
+ +
+
+ + + + + + + + + + + + + +{{range $index, $results := .Hosts}} + + + + + + + + + + +{{end}} + +
#HostDescriptionStatusPublicLast UpdateFailure ReasonDelete
{{add $index 1}}{{.Host}} {{.Description}}{{.Status}} + + {{.UpdatedAt}}{{.Reason}} 
+

Next run: {{.NextRun}}

+
+
+ +
+
+
+
+

Information post

+ +
+ + +
+
+
+{{template "footer.html"}} diff --git a/views/footer.html b/views/footer.html new file mode 100644 index 0000000..0584450 --- /dev/null +++ b/views/footer.html @@ -0,0 +1,10 @@ + + + + + + diff --git a/views/header.html b/views/header.html new file mode 100644 index 0000000..a38c643 --- /dev/null +++ b/views/header.html @@ -0,0 +1,17 @@ + + + + + + + + Freemail @ mail.iamfabulous.de + + + + + + + diff --git a/views/index.html b/views/index.html index e69de29..71bb035 100644 --- a/views/index.html +++ b/views/index.html @@ -0,0 +1,83 @@ +{{template "header.html"}} +{{template "navbar.html"}} + +{{if .Error}} +
+
+ {{range .Error}} + + {{end}} +
+
+{{end}} +{{if .Success}} +
+
+ {{range .Success}} + + {{end}} +
+
+{{end}} + +
+
+
+
+ + +
+ Freemail @ mail.iamfabulous.de +
+ + +
+ +
+ +
+
+ + +
+ +
+ +
+
+ + +
+ +
+ +
+
+ + +
+ +
+ +
+
+ + +
+ +
+ +
+
+ +
+
+ +
+
+{{template "footer.html"}} diff --git a/views/login.html b/views/login.html new file mode 100644 index 0000000..d7a3865 --- /dev/null +++ b/views/login.html @@ -0,0 +1,62 @@ +{{template "header.html"}} +{{template "navbar.html"}} +
+
+{{range .Error}} + +{{end}} +{{range .Success}} + +{{end}} +
+
+
+
+
+
+
+
+
+
+ + +
+ Login! +
+ + +
+ +
+ +
+
+ + +
+ +
+ +
+
+ + +
+ +
+ +
+
+ +
+
+ +
+
+{{template "footer.html"}} diff --git a/views/navbar.html b/views/navbar.html new file mode 100644 index 0000000..48e3877 --- /dev/null +++ b/views/navbar.html @@ -0,0 +1,14 @@ + diff --git a/views/register.html b/views/register.html new file mode 100644 index 0000000..b1481fc --- /dev/null +++ b/views/register.html @@ -0,0 +1,70 @@ +{{template "header.html"}} +{{template "navbar.html"}} +
+
+{{range .Error}} + +{{end}} +{{range .Success}} + +{{end}} +
+
+
+
+
+
+
+
+
+
+ + +
+ Register! +
+ + +
+ +
+ +
+
+ + +
+ +
+ +
+
+ + +
+ +
+ +
+
+ + +
+ +
+ +
+
+ +
+
+ +
+
+{{template "footer.html"}} -- cgit v1.2.3