diff options
author | Cara Salter <cara@devcara.com> | 2022-07-19 12:49:28 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-07-19 12:49:28 -0400 |
commit | aadc1975d459f0e2e2807dbb3e2a36098476128b (patch) | |
tree | 231efcabf21f95e46ae5ffdedadf55bf3ccea66b /templates/index.rs.html | |
download | nccd-aadc1975d459f0e2e2807dbb3e2a36098476128b.tar.gz nccd-aadc1975d459f0e2e2807dbb3e2a36098476128b.zip |
Initial commit
Diffstat (limited to 'templates/index.rs.html')
-rw-r--r-- | templates/index.rs.html | 21 |
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> |