-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (48 loc) · 1.49 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Optimal Commitment Calculator</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
input, button {
margin: 5px 0;
}
label {
display: block;
margin-top: 10px;
}
.result {
margin-top: 20px;
font-weight: bold;
}
</style>
</head>
<body>
<h1>Optimal Commitment Calculator</h1>
<form id="calculator-form">
<label for="currency">Currency:</label>
<select id="currency" name="currency">
<option value="USD">$</option>
<option value="GBP">£</option>
</select>
<label for="usage">Historical Usage (comma separated):</label>
<input type="text" id="usage" required>
<label for="discountedRate">Discounted Rate:</label>
<input type="number" id="discountedRate" step="0.01" required>
<label for="fullPrice">Full Price:</label>
<input type="number" id="fullPrice" step="0.01" required>
<button type="button" onclick="calculateOptimalCommitment()">Calculate</button>
</form>
<div class="result" id="result"></div>
<a class="result" id="link">Link</a>
<div style="width: 800px"><canvas id="chart"></canvas></div>
<a href="https://github.com/isotoma/commitment-calculator/">Source code</a>
<script src="//cdn.jsdelivr.net/npm/chart.js"></script>
<script src="./main.js"></script>
</body>
</html>