ProxmoxAAS-Dashboard/account.html
Arthur Lu cabea750db improve login form responsiveness
Signed-off-by: Arthur Lu <learthurgo@gmail.com>
2023-04-06 22:31:39 +00:00

37 lines
965 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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">
<link rel="stylesheet" href="css/table.css" type="text/css">
<script src="scripts/account.js" type="module"></script>
</head>
<body>
<header>
<h1>tronnet</h1>
<hr>
<nav id="nav">
<a href="index.html">Instances</a>
<a href="account.html" aria-current="true">Account</a>
<a href="login.html">Logout</a>
</nav>
</header>
<main>
<h2>Account</h2><hr>
<table id="resource-table">
<thead>
<tr>
<th>Resource Type</th>
<th>Avaliable Amount</th>
<th>Total Amount</th>
</tr>
</thead>
<tbody></tbody>
</table>
</main>
<footer><p>&copy; tronnet</p></footer>
</body>
</html>