<!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/config.js" type="module"></script>
	</head>
	<body>
		<header>
			<h1>proxmox</h1>
			<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>
				<a href="login.html">Logout</a>
			</nav>
		</header>
		<main>
			<section class="w3-container">
				<h2 id="name"><a href="index.html">Instances</a> / %{vmname}</h2>
				<form>
					<fieldset class="w3-card w3-padding">
						<span><legend>Resources</legend></span>
						<div class="input-grid" id="resources" style="grid-template-columns: auto auto auto 1fr;"></div>
					</fieldset>
					<fieldset class="w3-card w3-padding">
						<span><legend>Disks</legend></span>
						<div class="input-grid" id="disks" style="grid-template-columns: auto auto 1fr auto;"></div>
						<div class="w3-container w3-center">
							<img id="disk-add" src="images/actions/disk/add-disk.svg" class="clickable" alt="Add New Disk" title="Add New Disk">
							<img id="cd-add" src="images/actions/disk/add-cd.svg" class="clickable none" alt="Add New CDROM" title="Add New CDROM">
						</div>
					</fieldset>
					<fieldset class="w3-card w3-padding">
						<span><legend>Network Interfaces</legend></span>
						<div class="input-grid" id="networks" style="grid-template-columns: auto auto 1fr auto;"></div>
						<div class="w3-container w3-center">
							<img id="network-add" src="images/actions/network/add.svg" class="clickable" alt="Add New Network Interface" title="Add New Network Interface">
						</div>
					</fieldset>
					<fieldset class="w3-card w3-padding none" id="devices-card">
						<span><legend>PCIe Devices</legend></span>
						<div class="input-grid" id="devices" style="grid-template-columns: auto 1fr auto;"></div>
						<div class="w3-container w3-center">
							<img id="device-add" src="images/actions/device/add.svg" class="clickable" alt="Add New PCIe Device" title="Add New PCIe Device">
						</div>
					</fieldset>
					<div class="w3-container w3-center" id="form-actions">
						<button class="w3-button w3-margin" id="exit" type="button">EXIT</button>
					</div>
				</form>
			</section>
		</main>
	</body>
</html>