games/tools/WebhookYeet/index.html

25 lines
807 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
const output = document.getElementById("out")
fetch(url, { method: 'DELETE' })
.then((response) => {
if(response.ok) {
output.innerHTML = 'Succesfully yeeted';
}
else {
output.innerHTML = 'Failed to yeet';
}
})
}
</script>
</body>