diff options
Diffstat (limited to 'public/index.html')
| -rw-r--r-- | public/index.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..c7a2291 --- /dev/null +++ b/public/index.html @@ -0,0 +1,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> |
