-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (26 loc) · 1.44 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- HTML Meta Tags -->
<title>Delete Webhooks</title>
<!-- Scripts -->
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="p-8 max-w-md m-auto bg-zinc-900 text-white text-center">
<main>
<h1 class="text-3xl font-bold mb-6">Delete Webhooks</h1>
<form id="form" onsubmit="deleteWebhook()">
<label for="webhook" class="block mb-2 text-left text-sm font-medium text-gray-400">Webhook URL</label>
<input type="url" id="webhook" class="block p-3 w-full rounded-md text-sm bg-gray-700 border-gray-600 outline-none focus:outline-2 focus:outline-blue-600 mb-4" placeholder="https://discord.com/api/webhooks/..." required>
<button type="submit" id="btn" class="bg-red-600 hover:bg-red-700 focus:ring-4 focus:outline-none focus:ring-red-300 font-medium rounded-lg text-sm w-full sm:w-auto px-5 py-2.5">Delete</button>
</form>
</main>
<footer class="mt-8">
<p>© <script>document.write(new Date().getFullYear())</script> <span class="font-semibold">William Harrison</span> - All Rights Reserved.</p>
</footer>
</body>
<script src="/script.js"></script>
</html>