vmid-calculator/vmid.html
2024-05-04 15:47:24 +02:00

67 lines
No EOL
2.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vim ID calculator > ADMStaff</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="shortcut icon" href="https://students.cs.unibo.it/img/favicon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap"
rel="stylesheet">
</head>
<body>
<div class="buttons">
<div class="dropdown">
<button class="dropbtn">Critical level</button>
<div class="dropdown-content">
<button type="button" onclick="updateCriticalLevel(1)">ADM core</button>
<button type="button" onclick="updateCriticalLevel(2)">CSUnibo</button>
<button type="button" onclick="updateCriticalLevel(3)">Students projects</button>
<button type="button" onclick="updateCriticalLevel(4)">Kubernetes</button>
<button type="button" onclick="updateCriticalLevel(7)">Other</button>
<button type="button" onclick="updateCriticalLevel(9)">Templates</button>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">State</button>
<div class="dropdown-content">
<button type="button" onclick="updateState(0)">Public IPv4</button>
<button type="button" onclick="updateState(1)">Private IPv4</button>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Category</button>
<div class="dropdown-content">
<button type="button" onclick="updateCategory(1)">Networking</button>
<button type="button" onclick="updateCategory(2)">Security</button>
<button type="button" onclick="updateCategory(5)">General Purpose</button>
<button type="button" onclick="updateCategory(6)">Analytics</button>
<button type="button" onclick="updateCategory(8)">Testing</button>
<button type="button" onclick="updateCategory(9)">Templates</button>
</div>
</div>
<input type="number" id="ldapUID" placeholder="Ldap UID">
<input type="number" id="ip" placeholder="IPv4 addr">
</div>
<div class="results">
<p id="vmid">000000000</p>
<button type="button" class="copy" onclick="copy()">Copy</button>
</div>
<footer>
<a href="https://students.cs.unibo.it/wiki/adm.wiki/proxmox/#proxmoxmanagement" target="_blank">Torna alla wiki
[Proxmox]</a>
<a href="https://students.cs.unibo.it" target="_blank">Sito ADMStaff</a>
</footer>
</body>
<script src=script.js>
</script>
</html>