-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
198 lines (168 loc) · 7.03 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<html>
<head>
<meta charset="utf-8">
<title> Wymiana Walut</title>
<link rel="stylesheet" type="text/css" href="styles/style.css">
<script src="jquery/jquery-3.5.1.min.js"></script>
<script src="js/API.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<script src="https://cdn.plot.ly/plotly-2.12.1.min.js"></script>
</head>
<body style="background-color:#111B21">
<div id="page-container">
<div id="content-wrap">
<header style="text-align: center;"><p>Przelicznik Walutowy</p></header>
<aside>
<table class="currency-table">
<thead>
<tr>
<th colspan="3" id="date">
</th>
</tr>
<tr>
<th colspan="3" style="text-align: center">
<input type="date" id="currDate">
</th>
</tr>
<tr>
<th style="text-align: center;">
Waluta
</th>
<th>
Kurs(zł)
</th>
<th>
Zmiana(%)
</th>
</tr>
</thead>
<tbody id="currency">
</tbody>
</table>
</aside>
<section>
<main>
<div class="converter-box">
<p id="title">
KONWERTER WALUTY (PLN)
</p>
<div class="amount-form">
<p>Kwota którą chcesz przeznaczyć na wymianę: </p>
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1">Złoty:</span>
<input type="text" placeholder="0.00" class="form-control searchBox" id="amountinput">
</div>
<p></p>
</div>
<div style="text-align: center;">
<button class="btn btn-outline-light" type="submit" id="convert">
Przelicz
</button>
<div>
<h2>
Ilość waluty jaką możesz kupić to:
<span class="converted-valuePLN">
</span>
</h2>
</div>
</div>
</div>
<p>
</p>
<div class="converter-box">
<p id="title">
KONWERTER WALUTY (Dowolna)
</p>
<p>Kwota którą chcesz przeznaczyć na wymianę: </p>
<input type="text" placeholder="0.00" class="form-control searchBox" id="amountinput2">
<p></p>
<div class="container">
<div class="row">
<div class="col-sm">
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1">Z:</span>
<select class="buy-form" id="sell">
</select>
</div>
</div>
<div class="col-sm">
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1">Na:</span>
<select class="buy-form" id="buy2">
</select>
</div>
</div>
</div>
</div>
<div style="text-align: center;">
<button class="btn btn-outline-light" type="submit" id="convert2">
Przelicz
</button>
<div>
<h2>
Ilość waluty jaką możesz kupić to:
<span class="converted-valueANY">
</span>
</h2>
</div>
</div>
</div>
<p>
</p>
<div class="chart-box">
<p id="title">
WYKRES ZALEŻNOŚCI W PRZEDZIALE
</p>
<center>
<table class="chart-table">
<thead>
<tr>
<th colspan="3" style="text-align: center">
Wykresy zależności
</th>
</tr>
<tr>
<th style="text-align: center">
Data od
</th>
<th style="text-align: center">
Waluta
</th>
<th style="text-align: center">
Data do
</th>
</tr>
<tr>
<th style="text-align: center">
<input type="date" id="ActualDate">
</th>
<th>
<select class="buy-form" id="currChart"></select>
</th>
<th style="text-align: center">
<input type="date" id="EndDate" disabled>
</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3" id = 'chart1'>
<div id="chart"></div>
</td>
</tr>
</tbody>
</table>
</center>
</div>
<p></p>
</main>
</section>
</div>
<footer><p>Stronę wykonał Dominik Jezierski</p></footer>
</div>
<script src="js/CurrencyExchange.js"></script>
<script src="js/DateChange.js"></script>
<script src="js/ColorSwap.js"></script>
<script src="js/Charts.js"></script>
</body>
</html>