moved js into seperate files inside js/ directory

This commit is contained in:
Mystikfluu
2022-04-24 09:51:32 +02:00
parent 38ad788a45
commit ca1b8fb324
8 changed files with 212 additions and 181 deletions
+1
View File
@@ -0,0 +1 @@
window.post = function(url, data) {return fetch(url, {method: "POST", headers: {'Content-Type': 'application/json'}, body: JSON.stringify(data)});}