41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>VS Manager Dashboard</title>
|
|
<style>
|
|
body { font-family: monospace; padding: 20px; background: #222; color: #fff; }
|
|
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
|
|
th, td { border: 1px solid #444; padding: 10px; text-align: left; }
|
|
th { background: #333; }
|
|
button { background: #444; color: #fff; border: 1px solid #666; padding: 5px 10px; cursor: pointer; }
|
|
button:hover { background: #555; }
|
|
.status-running { color: #55ff55; font-weight: bold; }
|
|
.status-stopped { color: #ff5555; font-weight: bold; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Vintage Story Manager Hub</h1>
|
|
<button id="refresh-btn">Refresh Operations</button>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Instance Name</th>
|
|
<th>Version</th>
|
|
<th>Port</th>
|
|
<th>Status</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="instances-table-body">
|
|
<tr>
|
|
<td colspan="5">Connecting to daemon infrastructure...</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html> |