2023-04-03 21:57:03 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2023-04-06 22:31:39 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2023-04-03 21:57:03 +00:00
|
|
|
<title>tronnet - client</title>
|
|
|
|
<link rel="icon" href="images/favicon.svg" sizes="any" type="image/svg+xml">
|
2023-04-11 21:38:51 +00:00
|
|
|
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
|
|
|
|
<link rel="stylesheet" href="css/style.css">
|
2023-04-25 21:35:50 +00:00
|
|
|
<link rel="stylesheet" href="css/nav.css">
|
2023-04-05 22:48:36 +00:00
|
|
|
<script src="scripts/account.js" type="module"></script>
|
2023-04-03 21:57:03 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-04-25 21:25:03 +00:00
|
|
|
<header>
|
2023-05-11 06:03:37 +00:00
|
|
|
<h1>tronnet</h1>
|
2023-05-11 06:13:00 +00:00
|
|
|
<label for="navtoggle">☰</label>
|
|
|
|
<input type="checkbox" id="navtoggle">
|
|
|
|
<nav>
|
|
|
|
<a href="index.html">Instances</a>
|
|
|
|
<a href="account.html" aria-current="true">Account</a>
|
|
|
|
<a href="login.html">Logout</a>
|
2023-04-03 21:57:03 +00:00
|
|
|
</nav>
|
|
|
|
</header>
|
2023-04-28 23:57:42 +00:00
|
|
|
<main>
|
|
|
|
<section class="w3-container">
|
2023-05-02 03:42:58 +00:00
|
|
|
<h2>Account</h2>
|
|
|
|
<div class="w3-card w3-padding">
|
2023-05-03 21:06:27 +00:00
|
|
|
<h3>Account Details</h3>
|
|
|
|
<p id="username">Username:</p>
|
|
|
|
<p id="pool">Pool:</p>
|
|
|
|
<p id="vmid">VMID Range:</p>
|
|
|
|
<p id="nodes">Nodes:</p>
|
|
|
|
</div>
|
2023-05-15 21:22:12 +00:00
|
|
|
<div class="w3-card w3-padding">
|
2023-05-03 21:06:27 +00:00
|
|
|
<h3>Cluster Resources</h3>
|
2023-05-12 21:17:29 +00:00
|
|
|
<table id="resource-table" class="w3-table w3-table-all w3-mobile" style="overflow-x: auto; margin-bottom: 1em;">
|
2023-05-03 21:06:27 +00:00
|
|
|
<thead>
|
|
|
|
<tr class="w3-black">
|
|
|
|
<th>Resource</th>
|
|
|
|
<th>Used</th>
|
|
|
|
<th>Free</th>
|
|
|
|
<th>Total</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody></tbody>
|
|
|
|
</table>
|
2023-04-28 23:57:42 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
2023-04-03 21:57:03 +00:00
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|