-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
33 lines (33 loc) · 1.28 KB
/
popup.html
File metadata and controls
33 lines (33 loc) · 1.28 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
</head>
<body>
<div style="font-size:15px; margin-bottom: 10px;">Частота обновления курсов</div>
<div>
<label for="BinUpdateInterval" class="InfText">Binance</label>
<input type="number" id="BinUpdateInterval" placeholder="Minutes"/>
</div>
<div>
<label for="CbrUpdateInterval" class="InfText">ЦБ</label>
<input type="number" id="CbrUpdateInterval" placeholder="Minutes" />
</div>
<div style="text-align:center;">
<input type="button" value="Save" id="saveUpdateValues"/>
</div>
<div>
<span class="InfText">Последнее обновление</span><br>
<span class="InfStatus">Binance: </span><span id="BinUpdateTime"></span><br>
<span class="InfStatus">ЦБ: </span><span id="CBRUpdateTime"></span>
</div>
<div>
<span id="Log"></span>
</div>
<button id="Start">Start</button>
<button id="Stop">Stop</button>
<span id="ApplicationStatus" class="InfStatus"></span>
<script src="popup.js"></script>
</body>
</html>