mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
13 lines
289 B
JavaScript
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"
|
|
}
|
|
})
|
|
}
|