This commit is contained in:
2024-02-11 19:27:54 +01:00
commit 751e4c2425
3 changed files with 259 additions and 0 deletions

17
index.php Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="no">
<script>
function register_runner(id) {
fetch("upload.php", {
method: "POST",
body: 'id='+id,
headers: {
"Content-type": "application/x-www-form-urlencoded"
}
});
};
</script>
<body>
<button onclick="register_runner('121321321')">registrer!</button>
</body>
<html>