24 lines
731 B
HTML
24 lines
731 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>SStar VCast License Usage Dashboard</title>
|
||
|
<link rel="icon" href="public/favicon.png" type="image/png">
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<h1>SStar VCast License Usage Dashboard</h1>
|
||
|
<div class="dashboard-layout">
|
||
|
<div id="chart-container" class="chart-section"></div>
|
||
|
<div id="queue-container" class="queue-section"></div>
|
||
|
</div>
|
||
|
<div id="update-time" class="update-time"></div>
|
||
|
</div>
|
||
|
<script type="module" src="src/main.js"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|