ProxmoxAAS-Dashboard/config.html

31 lines
911 B
HTML
Raw Normal View History

<!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/config.js" type="module"></script>
</head>
<body>
<div class="center-div">
<form>
2022-12-20 02:46:28 +00:00
<fieldset>
2022-12-21 01:07:58 +00:00
<legend>Name</legend>
2022-12-21 09:31:58 +00:00
<div class="label-input" id="name"></div>
2022-12-21 01:07:58 +00:00
</fieldset>
<fieldset>
<legend>Resources</legend>
2022-12-21 09:31:58 +00:00
<div class="label-input-unit" id="resources"></div>
2022-12-21 01:02:33 +00:00
</fieldset>
2022-12-21 01:38:14 +00:00
<fieldset class="fieldset-no-border">
<div class="btn-group" id="form-actions">
<button id="cancel" type="button">CANCEL</button>
<button id="submit" type="button">SUBMIT</button>
</div>
</fieldset>
</form>
</div>
</body>
</html>