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>
|
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">
|
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>
|
|
|
|
<div class="center-div">
|
|
|
|
<form>
|
|
|
|
<fieldset>
|
|
|
|
<legend>Proxmox VE Login</legend>
|
2022-12-21 19:33:51 +00:00
|
|
|
<div class="label-input">
|
2022-12-21 02:03:07 +00:00
|
|
|
<label for="username">Username</label>
|
2022-12-20 02:47:05 +00:00
|
|
|
<input type="text" id="username" name="username">
|
2022-12-21 02:03:07 +00:00
|
|
|
<label for="username">Password</label>
|
2022-12-20 02:46:28 +00:00
|
|
|
<input type="password" id="password" name="password">
|
2022-12-20 01:05:04 +00:00
|
|
|
</div>
|
2022-12-21 01:02:33 +00:00
|
|
|
</fieldset>
|
2022-12-21 01:38:14 +00:00
|
|
|
<fieldset class="fieldset-no-border">
|
2022-12-12 22:57:43 +00:00
|
|
|
<div class="btn-group">
|
|
|
|
<button id="submit">LOGIN</button>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
2022-12-21 01:52:41 +00:00
|
|
|
<p id="status"></p>
|
2022-12-12 22:57:43 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|