84 lines
3.3 KiB
HTML
84 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="Virtual Machine Cost Calculator">
|
|
<title>VM Cost Calculator</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Virtual Machine Cost Calculator</h1>
|
|
<form id="vm-form">
|
|
<label for="memory">Memory (GB):</label>
|
|
<input type="number" id="memory" min="0" value="0">
|
|
|
|
<label for="vcpus">vCPUs:</label>
|
|
<input type="number" id="vcpus" min="0" value="0">
|
|
|
|
<label for="public-ip">Public IP Type:</label>
|
|
<select id="public-ip">
|
|
<option value="0">Shared (0€)</option>
|
|
<option value="10">Dedicated (10€)</option>
|
|
</select>
|
|
|
|
<label for="storage-type">Storage Type:</label>
|
|
<select id="storage-type">
|
|
<option value="0.15">HDD (0.15€/GB)</option>
|
|
<option value="0.3">SSD (0.3€/GB)</option>
|
|
<option value="0.075">Archival (0.075€/GB)</option>
|
|
<option value="0.1">Snapshot/Backup (0.1€/GB)</option>
|
|
</select>
|
|
|
|
<label for="storage-size">Storage Size (GB):</label>
|
|
<input type="number" id="storage-size" min="0" value="0">
|
|
|
|
<label for="network-speed">Network Speed:</label>
|
|
<select id="network-speed">
|
|
<option value="1">100Mbit/s (1€)</option>
|
|
<option value="5">1000Mbit/s (5€)</option>
|
|
</select>
|
|
|
|
<label for="os">Operating System:</label>
|
|
<select id="os">
|
|
<optgroup label="Ubuntu">
|
|
<option>Ubuntu 20.04</option>
|
|
<option>Ubuntu 22.04</option>
|
|
<option>Ubuntu 24.04</option>
|
|
</optgroup>
|
|
<optgroup label="Alpine Linux">
|
|
<option>Alpine Linux 3.19</option>
|
|
<option>Alpine Linux 3.20</option>
|
|
<option>Alpine Linux 3.21</option>
|
|
</optgroup>
|
|
<optgroup label="OpenBSD">
|
|
<option>OpenBSD 7.6</option>
|
|
</optgroup>
|
|
<optgroup label="Debian">
|
|
<option>Debian 11</option>
|
|
<option>Debian 12</option>
|
|
</optgroup>
|
|
<optgroup label="Fedora">
|
|
<option>Fedora 41</option>
|
|
</optgroup>
|
|
<optgroup label="Windows">
|
|
<option>Windows 10</option>
|
|
<option>Windows 11</option>
|
|
<option>Windows Server 2019</option>
|
|
<option>Windows Server 2022</option>
|
|
<option>Windows Server 2025</option>
|
|
</optgroup>
|
|
</select>
|
|
|
|
<button type="button" onclick="calculateCost()">Calculate Cost</button>
|
|
</form>
|
|
<h2 id="total-cost">Total Cost: 0€</h2>
|
|
</div>
|
|
<footer>
|
|
<p>Copyright © <a href="https://rspt.se" target="_blank">RyeSprint Enterprises</a> 2018-2025. All rights reserved.</p>
|
|
</footer>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|