2022-12-19 06:14:57 +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-01-28 03:18:20 +00:00
< link rel = "icon" href = "images/favicon.svg" sizes = "any" type = "image/svg+xml" >
2024-07-26 18:34:14 +00:00
< link rel = "stylesheet" href = "modules/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-04-11 21:38:51 +00:00
< link rel = "stylesheet" href = "css/form.css" >
2022-12-19 06:14:57 +00:00
< script src = "scripts/config.js" type = "module" > < / script >
2023-08-14 23:42:02 +00:00
< script src = "scripts/draggable.js" type = "module" > < / script >
2024-07-17 19:49:13 +00:00
< script src = "modules/Sortable.min.js" > < / script >
< script src = "https://cdn.jsdelivr.net/npm/sortablejs@latest/Sortable.min.js" > < / script >
2022-12-19 06:14:57 +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" >
2024-07-16 19:00:30 +00:00
< nav id = "navigation" >
2023-09-26 19:15:54 +00:00
< a href = "index.html" aria-current = "page" > Instances< / a >
2023-05-11 06:13:00 +00:00
< a href = "account.html" > Account< / a >
2023-07-12 00:24:16 +00:00
< a href = "settings.html" > Settings< / a >
2024-07-16 19:00:30 +00:00
< a id = "admin-link" aria-disabled = "true" class = "none" > Admin< / a >
2023-05-11 06:13:00 +00:00
< a href = "login.html" > Logout< / a >
2023-04-06 03:46:39 +00:00
< / nav >
2023-03-25 23:41:56 +00:00
< / header >
2023-04-28 23:43:09 +00:00
< main >
2023-10-18 19:33:58 +00:00
< section >
2023-04-28 23:43:09 +00:00
< h2 id = "name" > < a href = "index.html" > Instances< / a > / %{vmname}< / h2 >
< form >
2023-05-08 00:50:14 +00:00
< fieldset class = "w3-card w3-padding" >
2023-07-06 04:53:47 +00:00
< legend > Resources< / legend >
2023-05-15 21:22:12 +00:00
< div class = "input-grid" id = "resources" style = "grid-template-columns: auto auto auto 1fr;" > < / div >
2023-04-28 23:43:09 +00:00
< / fieldset >
2023-05-15 21:22:12 +00:00
< fieldset class = "w3-card w3-padding" >
2023-07-06 04:53:47 +00:00
< legend > Disks< / legend >
2023-05-30 15:50:32 +00:00
< div class = "input-grid" id = "disks" style = "grid-template-columns: auto auto 1fr auto;" > < / div >
2023-04-28 23:43:09 +00:00
< div class = "w3-container w3-center" >
2024-07-24 19:32:40 +00:00
< svg id = "disk-add" class = "clickable" role = "img" aria-label = "Add New Disk" > < use xlink:href = "images/actions/disk/add-disk.svg#symb" > < / use > < / svg >
< svg id = "cd-add" class = "clickable none" role = "img" aria-label = "Add New CDROM" > < use xlink:href = "images/actions/disk/add-cd.svg#symb" > < / use > < / svg >
2023-04-28 23:43:09 +00:00
< / div >
< / fieldset >
2023-05-15 21:22:12 +00:00
< fieldset class = "w3-card w3-padding" >
2023-07-06 04:53:47 +00:00
< legend > Network Interfaces< / legend >
2023-05-30 15:50:32 +00:00
< div class = "input-grid" id = "networks" style = "grid-template-columns: auto auto 1fr auto;" > < / div >
2023-06-03 00:25:57 +00:00
< div class = "w3-container w3-center" >
2024-07-24 19:32:40 +00:00
< svg id = "network-add" class = "clickable" role = "img" aria-label = "Add New Network Interface" > < use xlink:href = "images/actions/network/add.svg#symb" > < / use > < / svg >
2023-06-03 00:25:57 +00:00
< / div >
2023-05-30 15:50:32 +00:00
< / fieldset >
< fieldset class = "w3-card w3-padding none" id = "devices-card" >
2023-07-06 04:53:47 +00:00
< legend > PCIe Devices< / legend >
2023-05-30 15:50:32 +00:00
< div class = "input-grid" id = "devices" style = "grid-template-columns: auto 1fr auto;" > < / div >
2023-06-03 00:25:57 +00:00
< div class = "w3-container w3-center" >
2024-07-24 19:32:40 +00:00
< svg id = "device-add" class = "clickable" role = "img" aria-label = "Add New PCIe Device" > < use xlink:href = "images/actions/device/add.svg#symb" > < / use > < / svg >
2023-06-03 00:25:57 +00:00
< / div >
2023-05-15 21:22:12 +00:00
< / fieldset >
2023-08-09 21:52:55 +00:00
< fieldset class = "w3-card w3-padding none" id = "boot-card" >
< legend > Boot Order< / legend >
2023-08-14 23:42:02 +00:00
< draggable-container id = "enabled" > < / draggable-container >
< hr style = "padding: 0; margin: 0;" >
< draggable-container id = "disabled" > < / draggable-container >
2023-08-09 21:52:55 +00:00
< / fieldset >
2023-04-28 23:43:09 +00:00
< div class = "w3-container w3-center" id = "form-actions" >
< button class = "w3-button w3-margin" id = "exit" type = "button" > EXIT< / button >
2023-04-06 04:31:12 +00:00
< / div >
2023-04-28 23:43:09 +00:00
< / form >
< / section >
2023-03-25 23:41:56 +00:00
< / main >
2022-12-19 06:14:57 +00:00
< / body >
< / html >