This commit is contained in:
2024-05-29 11:51:16 +02:00
parent dbe8f49a46
commit 274c93b86f
6 changed files with 40 additions and 269 deletions

5
scripty/dano.js Normal file
View File

@@ -0,0 +1,5 @@
document.onload = function () {
const response = fetch("/upload.php");
const tabulka = document.getElementById("tabulka");
tabulka.innerHTML = response.text;
}