-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpensionwise.html
104 lines (49 loc) · 2.02 KB
/
pensionwise.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<html>
<head>
<meta charset="utf-8">
<title>Pensionwise tools</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/lanes.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id = "calculator">
<h1>Calculate how much income you could get from you savings and for how long</h1>
<form>
<p>how much money do you have in your pot?</p>
<input type="text" id="amount" class="form-control" value="" data-value="view"/>
<p>at what age do you want to retire? </p>
<input type="text" id="age" class="form-control" value="" data-value="view"/> <br>
<input type ="button" id = "button" value="Press for result">
<br>
<input type="text" id="output1" class="form-control" value="" data-value="view"/>
<br>
<input type="range" name="points" class = "slider" id="output2" value="0" min="0" max="250000">
<div id = "text" >
</div>
</form>
</div>
<div id = "calculator2">
<h1>Calculate the borrowing cost for your phone<h1>
<form>
<p>What is the monthly cost of the contract including the phone?</p>
<input type="text" id="costinclusive" class="form-control" value="" data-value="view"/>
<p>What is the monthly cost of the contract excluding the phone (SIM only)? </p>
<input type="text" id="costexclusive" class="form-control" value="" data-value="view"/>
<p>What is the price to purchase the phone only</p>
<input type="number" id="price" min = "10" class="form-control" value="" data-value="view"/>
<p>What is the length of the contract in months ? </p>
<input type="text" id="length" class="form-control" value="" data-value="view"/>
<br>
<input type ="button" id = "button2" value="Press for result">
<br>
</form>
<div id = "result" >
</div>
</div>
<script src ="js/addon.js"></script>
<script src = "js/pensionwise.js"></script>
</body>
</html>