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-09-15 22:13:21 +00:00
|
|
|
<title>proxmox - dashboard</title>
|
2023-04-03 21:57:03 +00:00
|
|
|
<link rel="icon" href="images/favicon.svg" sizes="any" type="image/svg+xml">
|
2023-10-12 17:27:37 +00:00
|
|
|
<link rel="stylesheet" href="w3.css">
|
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-10-31 18:13:40 +00:00
|
|
|
<link rel="stylesheet" href="css/form.css">
|
2023-04-05 22:48:36 +00:00
|
|
|
<script src="scripts/account.js" type="module"></script>
|
2023-10-04 18:59:46 +00:00
|
|
|
<script src="scripts/chart.js" type="module"></script>
|
2023-09-05 21:47:39 +00:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
|
|
|
<style>
|
|
|
|
@media screen and (width >= 1264px){
|
|
|
|
#resource-container {
|
2023-09-11 19:04:07 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, calc(100% / 6));
|
2023-10-05 16:38:25 +00:00
|
|
|
grid-gap: 0;
|
2023-09-11 19:04:07 +00:00
|
|
|
justify-content: space-between;
|
2023-09-05 21:47:39 +00:00
|
|
|
}
|
|
|
|
}
|
2023-10-05 16:38:25 +00:00
|
|
|
@media screen and (width <= 1264px) and (width >= 680px) {
|
2023-09-05 21:47:39 +00:00
|
|
|
#resource-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, 200px);
|
2023-10-05 16:38:25 +00:00
|
|
|
grid-gap: 0;
|
2023-09-05 21:47:39 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
}
|
2023-10-05 16:38:25 +00:00
|
|
|
@media screen and (width <= 680px) {
|
2023-09-05 21:47:39 +00:00
|
|
|
#resource-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-10-05 16:38:25 +00:00
|
|
|
gap: 0;
|
2023-09-05 21:47:39 +00:00
|
|
|
flex-wrap: nowrap;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
2023-04-03 21:57:03 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-04-25 21:25:03 +00:00
|
|
|
<header>
|
2023-05-16 15:18:36 +00:00
|
|
|
<h1>proxmox</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>
|
2023-09-26 19:15:54 +00:00
|
|
|
<a href="account.html" aria-current="page">Account</a>
|
2023-07-12 00:24:16 +00:00
|
|
|
<a href="settings.html">Settings</a>
|
2023-05-11 06:13:00 +00:00
|
|
|
<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>
|
2023-10-18 19:33:58 +00:00
|
|
|
<section>
|
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-10-31 18:13:40 +00:00
|
|
|
<div class="w3-card w3-padding">
|
|
|
|
<h3>Password</h3>
|
|
|
|
<form id="password-form">
|
|
|
|
<div class="input-grid" style="grid-template-columns: auto auto 1fr;">
|
|
|
|
<label for="new-password">New Password</label>
|
|
|
|
<input class="w3-input w3-border" type="password" id="new-password">
|
|
|
|
<span></span>
|
|
|
|
<label for="confirm-password">Confirm Password</label>
|
|
|
|
<input class="w3-input w3-border" type="password" id="confirm-password">
|
|
|
|
<span></span>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</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-09-05 21:47:39 +00:00
|
|
|
<div id="resource-container"></div>
|
2023-04-28 23:57:42 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
2023-04-03 21:57:03 +00:00
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|