ProxmoxAAS-Dashboard/login.html
2022-12-19 17:16:04 -08:00

34 lines
986 B
HTML

<!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>
</head>
<body>
<div class="center-div">
<form>
<fieldset>
<legend>Proxmox VE Login</legend>
<div class="labels-inputs">
<div>
<div><label for="username">Username:</label></div>
<div><label for="username">Password:</label></div>
</div>
<div>
<div><input type="text" id="username" name="username"></div>
<div><input type="password" id="password" name="password"></div>
</div>
</div>
<div class="btn-group">
<button id="submit">LOGIN</button>
</div>
</fieldset>
<p id="status"></p>
</form>
</div>
</body>
</html>