-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="round-slider.bundle.js" type="module"></script>
<title>Monitor App</title>
</head>
<body>
<input id="theme-toggle" type="button" value="Night" />
<div id="app">
<div class="rel">
<round-slider
id="cpu-slider"
readonly min="0"
valueLabel="hola"
max="100"
value="0"></round-slider>
<span id="cpu-percentage">0 %</span>
</div>
<div class="rel">
<round-slider
id="memory-slider"
readonly min="0"
valueLabel="hola"
max="100"
value="0"></round-slider>
<span id="memory-percentage">0 %</span>
</div>
<div>
<table id="disks">
</table>
</div>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>