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">
|
|
|
|
<link rel="stylesheet" href="css/login.css" type="text/css">
|
|
|
|
<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>
|
|
|
|
<label for="username">Username: </label><input type="text" id="username" name="username"><br>
|
|
|
|
<label for="username">Password: </label><input type="password" id="password" name="password"><br>
|
|
|
|
<div class="btn-group">
|
|
|
|
<button id="submit">LOGIN</button>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
2022-12-13 01:12:11 +00:00
|
|
|
<p id="status"></p>
|
2022-12-12 22:57:43 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|