<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>proxmox - dashboard</title> <link rel="icon" href="images/favicon.svg" sizes="any" type="image/svg+xml"> <link rel="stylesheet" href="modules/w3.css"> <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/instance.js" type="module"></script> <script src="scripts/draggable.js" type="module"></script> <script src="modules/Sortable.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/sortablejs@latest/Sortable.min.js"></script> <style> .input-grid p, .input-grid div { margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; } </style> </head> <body> <header> <h1>proxmox</h1> <label for="navtoggle">☰</label> <input type="checkbox" id="navtoggle"> <nav id="navigation"> <a href="index.html" aria-current="page">Instances</a> <a href="account.html">Account</a> <a href="settings.html">Settings</a> <a href="login.html">Logout</a> </nav> </header> <main> <section> <h2 id="name"><a href="index.html">Instances</a> / %{vmname}</h2> <form> <fieldset class="w3-card w3-padding"> <legend>Resources</legend> <div class="input-grid" id="resources" style="grid-template-columns: auto auto auto 1fr;"></div> </fieldset> <fieldset class="w3-card w3-padding"> <legend>Disks</legend> <div class="input-grid" id="disks" style="grid-template-columns: auto auto 1fr auto;"></div> <div class="w3-container w3-center"> <button type="button" id="disk-add" class="w3-button" aria-label="Add New Disk"> <span class="large" style="margin: 0;">Add Disk</span> <svg class="small" role="img" style="height: 1lh; width: 1lh;" aria-label="Add New Disk"><use href="images/actions/disk/add-disk.svg#symb"></use></svg> </button> <button type="button" id="cd-add" class="w3-button none" aria-label="Add New CD"> <span class="large" style="margin: 0;">Add CD</span> <svg class="small" role="img" style="height: 1lh; width: 1lh;" aria-label="Add New CDROM"><use href="images/actions/disk/add-cd.svg#symb"></use></svg> </button> </div> </fieldset> <fieldset class="w3-card w3-padding"> <legend>Network Interfaces</legend> <div class="input-grid" id="networks" style="grid-template-columns: auto auto 1fr auto;"></div> <div class="w3-container w3-center"> <button type="button" id="network-add" class="w3-button" aria-label="Add New Network Interface"> <span class="large" style="margin: 0;">Add Network</span> <svg class="small" role="img" style="height: 1lh; width: 1lh;" aria-label="Add New Network Interface"><use href="images/actions/network/add.svg#symb"></use></svg> </button> </div> </fieldset> <fieldset class="w3-card w3-padding none" id="devices-card"> <legend>PCIe Devices</legend> <div class="input-grid" id="devices" style="grid-template-columns: auto 1fr auto;"></div> <div class="w3-container w3-center"> <button type="button" id="device-add" class="w3-button" aria-label="Add New PCIe Device"> <span class="large" style="margin: 0;">Add Device</span> <svg class="small" role="img" style="height: 1lh; width: 1lh;" aria-label="Add New PCIe Device"><use href="images/actions/device/add.svg#symb"></use></svg> </button> </div> </fieldset> <fieldset class="w3-card w3-padding none" id="boot-card"> <legend>Boot Order</legend> <draggable-container id="enabled"></draggable-container> <hr style="padding: 0; margin: 0;"> <draggable-container id="disabled"></draggable-container> </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>