34 lines
928 B
HTML
34 lines
928 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<link rel="icon" href="data:,">
|
|
<meta charset='utf-8'>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
<title>Centralex State</title>
|
|
<!--INSERT HEAD CONTENT HERE-->
|
|
</head>
|
|
|
|
<body>
|
|
<div id="header">
|
|
<p id="free_ports" />
|
|
<p id="last_change" />
|
|
</div>
|
|
<div id="connected_box">
|
|
<div id="connected" class="hidden"><!--INSERT SVG HERE--></div>
|
|
<p id="last_ping" />
|
|
</div>
|
|
|
|
<table id="table">
|
|
<tr>
|
|
<th onclick="sort(this,'number')">Nummer</th>
|
|
<th onclick="sort(this,'port')">Port</th>
|
|
<th onclick="sort(this,'status')">Zustand</th>
|
|
<th onclick="sort(this,'name')">Name</th>
|
|
<th onclick="sort(this,'rejector')">Meldung</th>
|
|
<th onclick="sort(this,'last_change')">Letzte Änderung</th>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
|
|
</html> |