diff options
| author | Maks Jopek <maks@jopek.eu> | 2026-07-11 00:48:14 +0200 |
|---|---|---|
| committer | Maks Jopek <maks@jopek.eu> | 2026-07-11 00:49:00 +0200 |
| commit | a51e2c24a927fea0af92677d8fba7015bd4e4ccd (patch) | |
| tree | 3fd60d5e476b0039d12e7ba70c0282b447f52447 /public/index.html | |
| download | puszcza.jopek.eu-a51e2c24a927fea0af92677d8fba7015bd4e4ccd.tar.gz puszcza.jopek.eu-a51e2c24a927fea0af92677d8fba7015bd4e4ccd.tar.zst puszcza.jopek.eu-a51e2c24a927fea0af92677d8fba7015bd4e4ccd.zip | |
Initial commit
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> |
