45 lines
1.4 KiB
HTML
45 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>tronnet - client</title>
|
|
<link rel="icon" href="images/favicon.svg" sizes="any" type="image/svg+xml">
|
|
<link rel="stylesheet" href="css/style.css" type="text/css">
|
|
<link rel="stylesheet" href="css/form.css" type="text/css">
|
|
<link rel="stylesheet" href="css/button.css" type="text/css">
|
|
<script src="scripts/login.js" type="module"></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>tronnet</h1>
|
|
<hr>
|
|
<nav id="nav">
|
|
<a href="login.html">Login</a>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<h2>Login</h2><hr>
|
|
<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>
|
|
</main>
|
|
<footer><p>© tronnet</p></footer>
|
|
</body>
|
|
</html> |