Files
phpsite/index.html
2025-05-01 20:36:32 +02:00

36 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WM Ware Form</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="form-container">
<h2>WM Ware Form</h2>
<form action="send.php" method="post">
<div class="form-group">
<label for="VM_Name">VM Name</label>
<input type="text" id="VM_Name" name="VM_Name" placeholder="Enter Name of VM" required>
</div>
<div class="form-group">
<label for="size">Size</label>
<input type="number" id="size" name="size" placeholder="Enter Size of VM" min="1" required>
</div>
<div class="form-group">
<label for="size_postfix">Denote Giga, Tera or Peta Bytes</label>
<select id="size_postfix" name="size_postfix" required>
<option value="" disabled selected>Select a Size</option>
<option value="GB">GB</option>
<option value="TB">TB</option>
<option value="PB">PB</option>
</select>
</div>
<button type="submit">Submit</button>
</form>
</div>
</body>
</html>