aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2022-07-19 12:49:28 -0400
committerCara Salter <cara@devcara.com>2022-07-19 12:49:28 -0400
commitaadc1975d459f0e2e2807dbb3e2a36098476128b (patch)
tree231efcabf21f95e46ae5ffdedadf55bf3ccea66b /templates
downloadnccd-aadc1975d459f0e2e2807dbb3e2a36098476128b.tar.gz
nccd-aadc1975d459f0e2e2807dbb3e2a36098476128b.zip
Initial commit
Diffstat (limited to 'templates')
-rw-r--r--templates/index.rs.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/index.rs.html b/templates/index.rs.html
new file mode 100644
index 0000000..2971d13
--- /dev/null
+++ b/templates/index.rs.html
@@ -0,0 +1,21 @@
+@use super::statics::style_css;
+
+@()
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <title>NCCd Dashboard</title>
+ <link rel="stylesheet" href="/static/@style_css.name"/>
+
+ <meta name="viewport" content="width=device-width,initial-scale=1.0">
+ </head>
+
+ <body>
+
+ <div class="container">
+ <h1>NCCd (Network Communications Control Daemon)</h1>
+
+ <h3>Please <a href="/auth/login">Log in</a></h3>
+
+ </body>
+</html>