aboutsummaryrefslogtreecommitdiff
path: root/public/index.html
diff options
context:
space:
mode:
authorjakobst1n <jakob.stendahl@outlook.com>2018-09-07 00:32:51 +0200
committerjakobst1n <jakob.stendahl@outlook.com>2018-09-07 00:32:51 +0200
commit78d7c8d75a5f55ab56dd018edc85ebce9aa033bb (patch)
tree2ad9da977667b79236cfdd827d0446a5bf9fea18 /public/index.html
downloadLuxcena-Neo-78d7c8d75a5f55ab56dd018edc85ebce9aa033bb.tar.gz
Luxcena-Neo-78d7c8d75a5f55ab56dd018edc85ebce9aa033bb.zip
:construction: Add pre-v1 project
Because of some stupid mistakes with the repo, I decided to delete the git history. Create a new, fresh repo, and move all the code there. Since all this is pre-v1, everything is in a testing-phase anyways. So i do not think we are going to feel the need for any history. The old repo is renamed to Luxcena-Neo-Old, and will be there until i convince myself i won't need the history.
Diffstat (limited to 'public/index.html')
-rw-r--r--public/index.html66
1 files changed, 66 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..db2faac
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,66 @@
+<!DOCTYPE html>
+<html class="general">
+ <head>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+ <title>Luxcena Neo</title>
+
+ <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-alpha.4/css/materialize.min.css">
+ <link rel="stylesheet" href="/css/bundle.css" type="text/css" />
+ </head>
+
+ <body id="index">
+ <header>
+ <nav>
+ <div class="nav-wrapper">
+ <a href="#" data-target="slide-out" class="sidenav-trigger"><i class="material-icons">menu</i></a>
+ <a href="#" class="brand-logo">Luxcena Neo</a>
+ </div>
+ </nav>
+ <div id="sidenav"></div>
+ </header>
+
+ <main>
+ <div class="">
+
+ <div class="row">
+
+ <div class="col s12 m6">
+ <div class="card light-green lighten-1">
+ <div class="card-content">
+ <span class="card-title">General</span>
+ <p>
+ <b>Current script:</b> <span id="currentScript"></span> <br />
+ <b>Uptime:</b> <span id="uptime"></span>
+ </p>
+ </div>
+ </div>
+ </div>
+
+ <div class="col s12 m12">
+ <div class="card lighten-3">
+ <div class="card-content">
+ <span class="card-title">Logs</span>
+ <table class="highlight" id="log-table">
+ <tbody id="log-table-body"></tbody>
+ </table>
+ </div>
+ <div class="card-action">
+ <a href="/logviewer">Open LogViewer</a>
+ </div>
+ </div>
+ </div>
+
+ </div>
+
+ </div>
+
+ </main>
+
+
+ <script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-beta/js/materialize.min.js"></script>
+ <script src="/socket.io/socket.io.js"></script>
+ <script type="text/javascript" src="/js/bundle.js"></script>
+ </body>
+</html>