36 lines
990 B
HTML
36 lines
990 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Robot Driver Info</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>Robot Driver Status</h1>
|
|
|
|
<div class="sections">
|
|
<div id="status" class="section" data-id="clients">
|
|
<h2>Verbundene WebClients</h2>
|
|
<ul id="clients"></ul>
|
|
</div>
|
|
|
|
<div id="senders" class="section" data-id="senders">
|
|
<h2>Verbundene FluidNC-Controller</h2>
|
|
<ul id="senderList"></ul>
|
|
</div>
|
|
|
|
<div id="commands" class="section" data-id="commands">
|
|
<h2>Letzte Commands</h2>
|
|
<ul id="commandList"></ul>
|
|
</div>
|
|
|
|
<div id="pings" class="section" data-id="pings">
|
|
<h2>Letzte Ping Nachrichten</h2>
|
|
<ul id="pingList"></ul>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html> |