ProxmoxAAS-API/login.html

32 lines
943 B
HTML
Raw Normal View History

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>
<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 22:57:43 +00:00
</head>
<body>
<div class="center-div">
<form>
<fieldset>
<legend>Proxmox VE Login</legend>
2022-12-20 01:05:04 +00:00
<div class="labels-inputs">
2022-12-20 02:46:28 +00:00
<label for="username">Username:</label>
2022-12-20 02:47:05 +00:00
<input type="text" id="username" name="username">
2022-12-20 02:46:28 +00:00
<label for="username">Password:</label>
<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:02:33 +00:00
<p id="status"></p>
2022-12-12 22:57:43 +00:00
</div>
</body>
</html>