2022-12-12 22:57:43 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<title>tronnet - client</title>
|
2023-01-28 03:18:20 +00:00
|
|
|
<link rel="icon" href="images/favicon.svg" sizes="any" type="image/svg+xml">
|
2022-12-13 00:27:45 +00:00
|
|
|
<link rel="stylesheet" href="css/style.css" type="text/css">
|
2022-12-20 00:13:43 +00:00
|
|
|
<link rel="stylesheet" href="css/form.css" type="text/css">
|
2023-04-05 22:29:15 +00:00
|
|
|
<link rel="stylesheet" href="css/button.css" type="text/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>
|
|
|
|
<body>
|
2023-03-25 23:38:15 +00:00
|
|
|
<header>
|
|
|
|
<nav>
|
|
|
|
<a href="login.html" aria-current="true">LOGIN</a>
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
<main>
|
2023-04-03 22:59:36 +00:00
|
|
|
<form style="margin-left: auto; margin-right: auto;">
|
|
|
|
<fieldset>
|
|
|
|
<legend>Proxmox VE Login</legend>
|
|
|
|
<div class="input-grid" style="grid-template-columns: repeat(2, auto);">
|
|
|
|
<label for="username">Username</label>
|
|
|
|
<input type="text" id="username" name="username">
|
|
|
|
<label for="password">Password</label>
|
|
|
|
<input type="password" id="password" name="password">
|
|
|
|
<label for="realm">Realm</label>
|
|
|
|
<select id="realm" name="realm"></select>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset class="fieldset-no-border">
|
|
|
|
<div class="btn-group">
|
|
|
|
<button id="submit">LOGIN</button>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
<p id="status" style="text-align: center;"></p>
|
2023-03-25 23:38:15 +00:00
|
|
|
</main>
|
|
|
|
<footer><p>© tronnet</p></footer>
|
2022-12-12 22:57:43 +00:00
|
|
|
</body>
|
|
|
|
</html>
|