This repository has been archived by the owner on Feb 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (44 loc) · 2.39 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
<!doctype html>
<html>
<head>
<title>DiscordEmoteStats</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="js/emoji.js"></script>
<script src="https://twemoji.maxcdn.com/v/latest/twemoji.min.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css" rel="stylesheet" type="text/css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<meta name="title" content="Discord Emote Stats">
<meta name="description" content="Get statistics over your emote usage on Discord.">
<meta name="keywords" content="discord, emote, emoji, stats, statistics, discord statistics, emojis, emotes">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="author" content="LiterallyFabian">
</head>
<body>
<div class="container-fluid w-75 justify-content-md-center" style="margin-top:1rem">
<div id="dataentry">
<div class="form-group">
<label for="exampleFormControlTextarea1">Paste your emoji data</label>
<textarea class="form-control" id="emojidata" rows="3"></textarea>
</div><br>
<button onclick="submit()" class="btn btn-primary">Submit</button>
<button onclick="fillDemo()" class="btn btn-secondary">Fill demo</button>
<button onclick="window.location.href = 'help.html'" class="btn btn-secondary">Help</button>
</div>
<div class="d-flex">
<div id="piechart-total" style="width: 50%; height: 500px;" class="d-inline-block"></div>
<div id="piechart-unique" style="width: 50%; height: 500px;" class="d-inline-block"></div>
</div>
<div class="container-fluid">
<div class="row" id="emojiList">
</div>
</div>
</div>
</body>
</html>