-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (54 loc) · 2.13 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="EXON">
<meta name="theme-color" content="#000000">
<meta name="og:site_name" content="디스코드 웹훅 툴">
<meta name="description" content="디스코드 웹훅을 쉽고 빠르게 제어해보세요!">
<meta property="og:image" content="https://raw.githubusercontent.com/1-EXON/DisHook-in-Web/master/preview.png">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="discord.css">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<title>DisHook</title>
</head>
<body>
<div class="top">
<h1>DisHook</h1>
</div>
<div class="form">
<form onsubmit="return false" method="post">
<tr>
<label>WebHook Link</label>
<td><input id="webhook-link"></td>
</tr>
<p></p>
<tr>
<label>WebHook Name</label>
<input id="webhook-name">
</tr>
<p></p>
<tr>
<label>WebHook Avatar Url</label>
<input id="webhook-avatar-url">
</tr>
<p></p>
<tr>
<label>WebHook Content</label>
<input id="webhook-content">
</tr>
<td></td>
<button onclick="sendWebhook(document.querySelector('#webhook-link').value, document.querySelector('#webhook-content').value, document.querySelector('#webhook-name').value, document.querySelector('#webhook-avatar-url').value);
document.querySelector('#webhook-content').value = ''">전송</button>
</form>
</div>
<div class="bottom">
<a href="https://github.com/1-EXON/DisHook-in-Web" type="button" class="btn btn-dark btn-floating">
<i class="fab fa-github fa-lg"></i>
</a>
</div>
<script src="index.js"></script>
</body>
</html>