<!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="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"> <script src="scripts/admin.js" type="module"></script> </head> <body> <header> <h1>proxmox</h1> <label for="navtoggle">☰</label> <input type="checkbox" id="navtoggle"> <nav id="navigation"> <a href="index.html">Instances</a> <a href="account.html">Account</a> <a href="settings.html">Settings</a> <a id="admin-link" href="admin.html" aria-current="page">Admin</a> <a href="login.html">Logout</a> </nav> </header> <main> <h2>Cluster Administration</h2> <section class="w3-card w3-padding"> <div class="flex row nowrap" style="margin-top: 1em; justify-content: space-between;"> <h3>Users</h3> <button type="button" id="user-add" class="w3-button" aria-label="create new user"> <span class="large" style="margin: 0;">Create User</span> <svg class="small" style="height: 1lh; width: 1lh;" role="img" aria-label="Create New User"><use xlink:href="images/actions/user/add.svg#symb"></use></svg> </button> </div> <div> <div class="w3-row" style="border-bottom: 1px solid;"> <p class="w3-col l4 m4 s6">User</p> <p class="w3-col l4 m4 w3-hide-small">Groups</p> <p class="w3-col l2 w3-hide-medium w3-hide-small">Admin</p> <p class="w3-col l2 m4 s6">Actions</p> </div> <div id="user-container"></div> </div> </section> <section class="w3-card w3-padding"> <div class="flex row nowrap" style="margin-top: 1em; justify-content: space-between;"> <h3>Groups</h3> <button type="button" id="group-add" class="w3-button" aria-label="create new group"> <span class="large" style="margin: 0;">Create Group</span> <svg class="small" style="height: 1lh; width: 1lh;" role="img" aria-label="Create New Group"><use xlink:href="images/actions/group/add.svg#symb"></use></svg> </button> </div> <div> <div class="w3-row" style="border-bottom: 1px solid;"> <p class="w3-col l4 m4 s6">Group</p> <p class="w3-col l6 m4 w3-hide-small">Members</p> <p class="w3-col l2 m4 s6">Actions</p> </div> <div id="group-container"></div> </div> </section> </main> </body> </html>