games/tools/WebhookYeet/index.html
2023-02-27 13:35:52 +01:00

16 lines
511 B
HTML

<head>
<title>Discord webhook yeeter</title>
</head>
<body>
<label>Url:</label><br>
<textarea value="" rows="6" cols="80" id="input" required></textarea><br>
<button type="button" onclick="YEET();">YEET</button>
<h1 id="out"></h1>
<script>
function YEET(){
const url = document.getElementById("input").value
fetch(url, { method: 'DELETE' })
.then(() => document.getElementById("out") = 'Delete successful');
}
</script>
</body>