mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
16 lines
511 B
HTML
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> |