2023-04-03 21:57:03 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<title>tronnet - client</title>
|
|
|
|
<link rel="icon" href="images/favicon.svg" sizes="any" type="image/svg+xml">
|
|
|
|
<link rel="stylesheet" href="css/style.css" type="text/css">
|
2023-04-05 22:29:15 +00:00
|
|
|
<link rel="stylesheet" href="css/table.css" type="text/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>
|
|
|
|
<header>
|
2023-04-05 23:35:11 +00:00
|
|
|
<h1>tronnet</h1>
|
|
|
|
<hr>
|
2023-04-03 21:57:03 +00:00
|
|
|
<nav>
|
2023-04-05 23:39:28 +00:00
|
|
|
<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>
|
|
|
|
<main>
|
2023-04-05 22:29:15 +00:00
|
|
|
<table id="resource-table">
|
|
|
|
<thead>
|
2023-04-05 22:48:36 +00:00
|
|
|
<tr>
|
|
|
|
<th>Resource Type</th>
|
|
|
|
<th>Avaliable Amount</th>
|
|
|
|
<th>Total Amount</th>
|
|
|
|
</tr>
|
2023-04-05 22:29:15 +00:00
|
|
|
</thead>
|
2023-04-05 22:48:36 +00:00
|
|
|
<tbody></tbody>
|
2023-04-05 22:29:15 +00:00
|
|
|
</table>
|
2023-04-03 21:57:03 +00:00
|
|
|
</main>
|
|
|
|
<footer><p>© tronnet</p></footer>
|
|
|
|
</body>
|
|
|
|
</html>
|