ProxmoxAAS-Dashboard/index.html

50 lines
1.6 KiB
HTML
Raw Normal View History

2022-12-11 02:02:29 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>proxmox - client</title>
<link rel="icon" href="images/favicon.svg" sizes="any" type="image/svg+xml">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/nav.css">
<link rel="stylesheet" href="css/form.css">
<script src="scripts/index.js" type="module"></script>
2023-06-09 07:00:21 +00:00
<style>
#instance-container > div {
border-bottom: 1px solid white;
}
#instance-container > div:last-child {
border-bottom: none;
}
</style>
2022-12-11 02:02:29 +00:00
</head>
<body>
<header>
<h1>proxmox</h1>
2023-05-11 06:13:00 +00:00
<label for="navtoggle">&#9776;</label>
<input type="checkbox" id="navtoggle">
<nav>
<a href="index.html" aria-current="true">Instances</a>
<a href="account.html">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-06 03:46:39 +00:00
</nav>
</header>
<main>
<section class="w3-container">
<h2>Instances</h2>
<div class="w3-card w3-padding">
<div class="flex row nowrap" style="justify-content: space-between;">
<form role="search" class="flex row nowrap">
<img src="images/static/search.svg">
<input type="search" id="search" class="w3-input w3-border" style="height: 1lh;">
</form>
<button type="button" id="instance-add" class="w3-button">Create Instance</button>
</div>
<div id="instance-container"></div>
</div>
</section>
</main>
2022-12-11 02:02:29 +00:00
</body>
</html>