32 lines
939 B
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>
<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>
<fieldset>
<legend>Proxmox VE Login</legend>
2022-12-21 11:33:51 -08:00
<div class="label-input">
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>