diff options
Diffstat (limited to 'templates')
-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> |