Initial commit

This commit is contained in:
Home-Cluster
2023-01-07 15:59:18 +00:00
commit d0689a1ae5
33 changed files with 711 additions and 0 deletions

4
html/static/js/main.js Normal file
View File

@@ -0,0 +1,4 @@
function incrementCounter() {
let elem = document.querySelector("#counter");
elem.innerHTML = Number(elem.innerHTML) + 1;
}