2022-12-12 22:57:43 +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">
|
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">
|
2022-12-13 00:27:45 +00:00
|
|
|
<script src="scripts/login.js" type="module"></script>
|
2022-12-12 22:57:43 +00:00
|
|
|
</head>
|
2023-05-03 21:25:55 +00:00
|
|
|
<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">
|
|
|
|
<nav>
|
|
|
|
<a href="login.html" aria-current="true">Login</a>
|
2023-04-18 20:08:59 +00:00
|
|
|
</nav>
|
2023-03-25 23:38:15 +00:00
|
|
|
</header>
|
2023-05-03 21:25:55 +00:00
|
|
|
<main class="flex" style="justify-content: center; align-items: center;">
|
|
|
|
<div class="w3-container w3-card w3-margin w3-padding" style="height: fit-content;">
|
2023-04-11 21:38:51 +00:00
|
|
|
<h2 class="w3-center">Proxmox VE Login</h2>
|
2023-04-18 20:08:59 +00:00
|
|
|
<form>
|
2023-04-11 21:46:18 +00:00
|
|
|
<label for="username"><b>Username</b></label>
|
2023-09-07 02:44:11 +00:00
|
|
|
<input class="w3-input w3-border" id="username" name="username" type="text" autocomplete="username">
|
2023-04-11 21:46:18 +00:00
|
|
|
<label for="password"><b>Password</b></label>
|
2023-09-07 02:44:11 +00:00
|
|
|
<input class="w3-input w3-border" id="password" name="password" type="password" autocomplete="current-password">
|
2023-04-11 21:46:18 +00:00
|
|
|
<label for="realm">Realm</label>
|
2023-04-11 21:38:51 +00:00
|
|
|
<select class="w3-select w3-border" id="realm" name="realm"></select>
|
|
|
|
<div class="w3-center">
|
|
|
|
<button class="w3-button w3-margin" id="submit">LOGIN</button>
|
2023-04-03 22:59:36 +00:00
|
|
|
</div>
|
2023-04-11 21:38:51 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
2023-03-25 23:38:15 +00:00
|
|
|
</main>
|
2022-12-12 22:57:43 +00:00
|
|
|
</body>
|
|
|
|
</html>
|