blob: c7a2291d9470a4a3216478798d470a9a77419b67 (
plain) (
blame)
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<!-- <link href="css/style.css" rel="stylesheet"> -->
<script type="module" src="./script.js"></script>
<style>
body {
margin: 0;
height: calc(100vh - 3rem);
padding-top: 3rem;
background-color: darkslategray;
color: white;
}
.cont {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#btn {
width: 10rem;
padding-block: 2rem;
border-radius: 1rem;
}
progress {
margin-top: 1rem;
height: 2rem;
width: 10rem;
}
#stdout {
white-space: pre;
text-align: center;
}
</style>
</head>
<body>
<div class="cont">
<button type="button" id="btn"></button>
<progress min="0" max="100" value="0" id="bar"></progress>
<p id="stdout"></p>
Aktualne pliki
<ul id="fileList"></ul>
</div>
</body>
</html>
|