-
Notifications
You must be signed in to change notification settings - Fork 1
/
webhooks.html
44 lines (44 loc) · 1.86 KB
/
webhooks.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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Raleway|Roboto" rel="stylesheet">
<link rel="stylesheet" href="./style/style.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./script/lodash.js"></script>
<script defer src="./script/script.js"></script>
<script defer src="./script/autoExpand.js"></script>
<script src="https://cdn.rawgit.com/jackmoore/autosize/master/dist/autosize.min.js"></script>
</head>
<body>
<h1>Webhook sending</h1>
<label for="weburl"><span class="rqs" title="This is required">*</span> Webhook URL</label>
<input type="text" id="url" name="weburl" style="width: 20em" />
<p class="validation" id="urlValidation"></p>
<br/><br/>
<div class="inlblock">
<label for="nick">Webhook Username</label>
<input type="text" id="nick" name="nick" maxlength="32"/>
</div>
<div class="inlblock" style="margin-left: 40px;">
<label for="avatar">Webhook Avatar URL</label>
<input type="url" id="avatar" name="avatar" class="inlblock" style="width: 20em;"/>
</div>
<br/><br/><br/>
<div class="inlblock">
<label for="text">Message Content</label>
<textarea class="autoExpand" id="text" name="text" data-min-rows="1" rows="1" cols="50" maxlength="2000"></textarea>
</div>
<div class="inlblock" style="margin-left: 40px;">
<label for="tts" style="margin-bottom: 5px;">Use TTS</label>
<label class="switch">
<input type="checkbox" id="tts" name="tts"/>
<div class="slider round"></div>
</label>
</div>
<div id="send" class="dbutton">Send</div>
<h2>Embeds</h2>
<div id="embeds">
</div>
<div id="newemb" class="dbutton">Add Embed</div>
</body>
</html>