ProxmoxAAS-Dashboard/login.html

41 lines
1.7 KiB
HTML
Raw Normal View History

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, initial-scale=1.0">
2022-12-12 22:57:43 +00:00
<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">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/style.css">
<script src="scripts/login.js" type="module"></script>
2022-12-12 22:57:43 +00:00
</head>
<body class="w3-display-container" style="min-height: 100vh;">
<header>
<header class="w3-black w3-bar">
<nav class="w3-large w3-bar" id="nav">
<h1 class="w3-bar-item w3-mobile w3-hide-small" style="font-size: 18px; margin: 0px; background-color: #0f0; color: #000;">tronnet</h1>
<a class="w3-bar-item w3-mobile w3-button w3-hide-small" href="login.html" aria-current="true">Login</a>
</nav>
</header>
</header>
<main class="w3-container w3-display-middle w3-mobile">
<div class="w3-card-4 w3-margin">
<h2 class="w3-center">Proxmox VE Login</h2>
<form class="w3-container">
<label class="" for="username"><b>Username</b></label>
<input class="w3-input w3-border" id="username" name="username" type="text">
<label class="" for="password"><b>Password</b></label>
<input class="w3-input w3-border" id="password" name="password" type="password">
<label class="" for="realm">Realm</label>
<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>
</div>
</form>
</div>
<div class="w3-container w3-center w3-margin">
<output id="status"></output>
</div>
</main>
2022-12-12 22:57:43 +00:00
</body>
</html>