-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatus.html
127 lines (109 loc) · 4.06 KB
/
status.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Scripty | Status</title>
<link rel="canonical" href="https://scripty.org/status">
<link rel="preload" href="/assets/jb_mono/woff2/jb.woff2" as="font" type="font/woff2" crossorigin="">
<link rel="preload" href="/assets/jb_mono/woff2/jb_bold.woff2" as="font" type="font/woff2" crossorigin="">
<link rel="preload" href="/css/main.min.css" as="style" type="text/css">
<link rel="preload" href="/css/jb_mono.css" as="style" type="text/css">
<link rel="preload" href="https://a.scripty.org/count.js" as="script" type="application/javascript">
<link rel="preload" href="/js/status.js" as="script" type="application/javascript">
<meta name="description" content="Scripty's status page">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Scripty | Status">
<meta property="og:description" content="Scripty's status page">
<meta property="og:type" content="website">
<meta property="og:image" content="https://scripty.org/img/icon-128.webp">
<link rel="stylesheet" href="/css/main.min.css">
</head>
<body>
<div class="container is-widescreen">
<nav class="navbar is-transparent" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="/"><h1>Scripty</h1></a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="main-navbar">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="main-navbar" class="navbar-menu">
<div class="navbar-start">
<a href="/invite" class="navbar-item">Invite</a>
<a href="/about" class="navbar-item">About</a>
</div>
<div class="navbar-end"></div>
</div>
</nav>
<h1>Bot Status</h1>
<div id="loading">
<progress class="progress is-info" max="100"></progress>
</div>
<div id="on_error" style="display: none">
<h2>Error</h2>
Failed to load status.<br>
<span id="error_message"></span>
</div>
<div id="offline" style="display: none">
<h2>Offline</h2>
The bot is offline.
</div>
<noscript>Note: this page requires JS enabled.</noscript>
<div id="content" style="display: none">
<div class="level section">
<div class="level-item has-text-centered">
<div>
<p class="heading">Guilds</p>
<p class="title" id="guild_count"></p>
</div>
</div>
<div class="level-item has-text-centered">
<div>
<p class="heading">Users</p>
<p class="title" id="user_count"></p>
</div>
</div>
<div class="level-item has-text-centered">
<div>
<p class="heading">Voice Channels</p>
<p class="title" id="channel_count"></p>
</div>
</div>
<div class="level-item has-text-centered">
<div>
<p class="heading">Shards</p>
<p class="title" id="shard_count"></p>
</div>
</div>
</div>
<section class="section">
<h2>Calculate your server's shard ID</h2>
<div class="field has-addons has-addons-centered">
<div class="control">
<input class="input" inputmode="numeric" id="guild_id" placeholder="Server ID">
</div>
<div class="control">
<a id="calculate_shard_id" class="button is-success">Calculate</a>
</div>
</div>
<div id="shard_id_result"></div>
</section>
<section class="section">
<h2>Shard Statuses</h2>
<div class="columns is-mobile is-multiline is-centered is-vcentered" id="shard_info">
</div>
</section>
</div>
<footer>
<hr>
made with <3 by 0/0 and valkyrie_pilot
</footer>
</div>
<!-- 100% privacy friendly analytics: https://a.scripty.org/ -->
<script async defer data-goatcounter="https://a.scripty.org/count" src="https://a.scripty.org/count.js"></script>
<script async defer src="/js/status.js"></script>
</body>
</html>