mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
29 lines
626 B
HTML
29 lines
626 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Console</title>
|
|
<script src="index.js"></script>
|
|
</head>
|
|
<body onload="ready()">
|
|
|
|
<h1>Console</h1>
|
|
|
|
<h2>Interface</h2>
|
|
<div id="process-status">
|
|
<div id="process-interface">
|
|
<span class="name">Interface</span>
|
|
<span class="status">unknown</span>
|
|
<button class="power-on">Turn On</button>
|
|
<button class="power-off">Turn Off</button>
|
|
</div>
|
|
</div>
|
|
|
|
<h2>Home</h2>
|
|
<div id="server">
|
|
</div>
|
|
|
|
<div>
|
|
Node Version: <script>document.write(process.versions.node)</script>
|
|
</div>
|
|
</body>
|
|
</html>
|