-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebhook.html
More file actions
22 lines (20 loc) · 826 Bytes
/
Copy pathwebhook.html
File metadata and controls
22 lines (20 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Webhook deleter</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Mulish&display=swap">
<script src="./assets/webhook/script.js"></script>
<link rel="stylesheet" type="text/css" href="./assets/webhook/css/style.css">
</head>
<body>
<h1>appolon.dev/webhook</h1>
<div>
<textarea placeholder="Webhook url here"
class="stextarea"
cols="125" rows="1"
onkeydown="if (event.key === 'Enter' || event.keyCode === 13) { deletewh(this.value); setTimeout(() => { this.value = ''; }, 0); }"
onkeydown="if (event.key === 'Enter') { deletewh(this.value); setTimeout(() => { this.value = ''; }, 0); }">
</textarea>
</div>
</body>
</html>