diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2018-09-07 00:32:51 +0200 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2018-09-07 00:32:51 +0200 |
commit | 78d7c8d75a5f55ab56dd018edc85ebce9aa033bb (patch) | |
tree | 2ad9da977667b79236cfdd827d0446a5bf9fea18 /public/logviewer.html | |
download | Luxcena-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/logviewer.html')
-rw-r--r-- | public/logviewer.html | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/public/logviewer.html b/public/logviewer.html new file mode 100644 index 0000000..7b94a61 --- /dev/null +++ b/public/logviewer.html @@ -0,0 +1,64 @@ +<!DOCTYPE html> +<html class="general"> + <head> + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> + <title>Luxcena Neo - LogViewer</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="logviewer"> + <header> + <nav class="nav-extended"> + <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> + <div class="nav-content"> + <ul class="tabs tabs-transparent"> + <li class="tab"><a class="active" href="#basic">Basic</a></li> + <li class="tab"><a href="#advanced">Advanced</a></li> + <li class="tab"><a href="#script">Script</a></li> + <li class="tab"><a href="#raw">RAW</a></li> + </ul> + </div> + </nav> + <div id="sidenav"></div> + </header> + + <main class="row"> + <div id="basic" class="col s12"> + <table class="highlight log-table"> + <tbody id="log-table-basic" class="log-table-body"></tbody> + </table> + </div> + <div id="advanced" class="col s12"> + <table class="highlight log-table"> + <tbody id="log-table-advanced" class="log-table-body"></tbody> + </table> + </div> + <div id="script" class="col s12"> + <table class="highlight log-table"> + <tbody id="log-table-script" class="log-table-body"></tbody> + </table> + </div> + <div id="raw" class="col s12"> + <div class="col s12 m12"> + <div class="card lighten-3"> + <div class="card-content"> + This is nothing useful at the moment. Please view the file in your terminal. If you want to watch it, you can go to the rootDir of Luxcena-Neo, and type: + <pre>tail -fn 20 usrData/logs/logger.log</pre> + This will show the last twenty lines of the file, an show any new lines. + </div> + </div> + </div> + </div> + </main> + + <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> |