games/tools/multiup/index.js
2023-01-31 09:56:16 +01:00

13 lines
289 B
JavaScript

function doupload() {
var file = document.getElementById("file")
const body = new FormData
body.append("files[]", "@48_circles.gif")
fetch("https://pomf.lain.la/upload.php", {
body,
headers: {
"Content-Type": "multipart/form-data"
}
})
}