33 lines
1.1 KiB
HTML
Raw Normal View History

2022-12-12 14:57:43 -08: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">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/form.css" type="text/css">
<script src="scripts/login.js" type="module"></script>
2022-12-12 14:57:43 -08:00
</head>
<body>
<div class="center-div">
<form style="margin-top: 20px;">
2022-12-12 14:57:43 -08:00
<fieldset>
<legend>Proxmox VE Login</legend>
2022-12-21 15:56:52 -08:00
<div class="input-grid" style="grid-template-columns: repeat(2, auto);">
2022-12-20 18:03:07 -08:00
<label for="username">Username</label>
2022-12-19 18:47:05 -08:00
<input type="text" id="username" name="username">
2022-12-20 18:03:07 -08:00
<label for="username">Password</label>
2022-12-19 18:46:28 -08:00
<input type="password" id="password" name="password">
2022-12-19 17:05:04 -08:00
</div>
2022-12-20 17:02:33 -08:00
</fieldset>
2022-12-20 17:38:14 -08:00
<fieldset class="fieldset-no-border">
2022-12-12 14:57:43 -08:00
<div class="btn-group">
<button id="submit">LOGIN</button>
</div>
</fieldset>
</form>
2022-12-20 17:52:41 -08:00
<p id="status"></p>
2022-12-12 14:57:43 -08:00
</div>
</body>
</html>