forked from Notavone/discord-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (77 loc) · 4.25 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Discord panel</title>
<link rel="icon" href="public/favicon.ico">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
<link rel="stylesheet" href="public/stylesheets/main.css">
</head>
<body>
<div id="languageNav" class="overlay">
<a href="" class="closeBtn" onclick="closeNav()">×</a>
<div id="overlay-content"></div>
</div>
<div class="container-fluid">
<div class="row content">
<div class="col-12 col-xl-6">
<h6 class="header" id='channelName'></h6>
<div class="scrollable" id="chat"></div>
<select title="guilds" class="half" id="guilds"></select>
<select title="channels" class="half" id="channels"></select>
<div id="formatting" class="d-flex align-content-center justify-content-around">
<a href="" id="bold" class="formatting" onclick="format('bold')"><b>B</b></a>
<a href="" id="emphasis" class="formatting"
onclick="format('italic')"><em>I</em></a>
<a href="" id="underline" class="formatting"
onclick="format('underline')"><u>U</u></a>
<a href="" id="strike" class="formatting" onclick="format('strikeThrough')"><s>abc</s></a>
<a href="" id="clear" class="formatting"
onclick="format('removeFormat')"><span class="fa fa-eraser"></span></a>
</div>
<div contenteditable="true" id="toSend"></div>
<button class="bg-primary" id="send"></button>
<button class="bg-primary" id="inviteBtn"></button>
</div>
<div class="col-12 col-lg-6 col-xl-3">
<h6 id="lastMessagesHead" class='header'></h6>
<div class="scrollable" id="lastMessages"></div>
<button id="clearChat"></button>
<button id="refreshChat"></button>
<button class="bg-danger" id='refreshToken'></button>
<button class="bg-danger" id="language" onclick="openNav()"></button>
<button class="bg-danger" id='leaveGuild'></button>
</div>
<div class="col-12 col-lg-6 col-xl-3">
<h6 class="header" id='guildName'></h6>
<div class="scrollable" id="guildInfo"></div>
<fieldset class="mt-3">
<legend id="autoScrollHead"></legend>
<label class="switch">
<input checked id="chk1" type="checkbox" value="last">
<span class="slider round"></span>
</label>
<label for="chk1" id="last"></label><br>
<label class="switch">
<input checked id="chk2" type="checkbox" value="chatCheck">
<span class="slider round"></span>
</label>
<label for="chk2" id='channelNameLabel'></label><br>
<label class="switch">
<input id="chk3" type="checkbox" value="animCheck">
<span class="slider round"></span>
</label>
<label for="chk3" id="animCheck"></label>
</fieldset>
</div>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script type="text/javascript" src="public/javascripts/discord.12.1.1.min.js"></script>
<script type="text/javascript" src="locales.js"></script>
<script type="text/javascript" src="public/javascripts/main.js"></script>
<script type="text/javascript" src="public/javascripts/panel.js"></script>
</html>