ProxmoxAAS-Dashboard/login.html

33 lines
1.1 KiB
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>
2023-01-28 03:18:20 +00:00
<link rel="icon" href="images/favicon.svg" sizes="any" type="image/svg+xml">
<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 style="margin-top: 20px;">
2022-12-12 22:57:43 +00:00
<fieldset>
<legend>Proxmox VE Login</legend>
2022-12-21 23:56:52 +00:00
<div class="input-grid" style="grid-template-columns: repeat(2, auto);">
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>