This repository was archived by the owner on Jul 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
506 lines (435 loc) · 25.2 KB
/
index.html
File metadata and controls
506 lines (435 loc) · 25.2 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="TesterQTS Report syntax" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://teambulbbot.github.io/bug-report-tool/index.html" />
<meta property="og:image" content="https://teambulbbot.github.io/bug-report-tool/images/website/CreateReport.png" />
<meta property="og:description" content=" A way for Discord Bug hunters to create tickets more efficiently " />
<meta name="theme-color" content="#7289DA">
<!-- Include this to make the og:image larger -->
<meta name="twitter:card" content="summary_large_image">
<title>Discord Bug Syntax Tool</title>
<link rel="shortcut icon" href="images/icon.ico" />
<!-- Created by Smashicons -->
<!-- CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-beta/css/materialize.min.css" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body onload="checkTheme();">
<nav class="navColor" style="padding: 0px 5px; position: fixed; z-index: 1">
<div class="nav-bar">
<a href="#" class="brand-logo" id="titleText"><i class="material-icons left" style="padding-left: 7px;">bug_report</i> DTesters Bug Tool</a>
<a href="#" class="sidenav-trigger" data-target="mobile-nav">
<i class="material-icons">menu</i>
</a>
<ul class="right hide-on-med-and-down">
<li>
<a href="index.html"><i class="material-icons left" style="color: white">add_box</i>Create</a>
</li>
<li>
<a href="edit.html"><i class="material-icons left">update</i>Edit</a>
</li>
<li>
<a href="cnr-cr.html"><i class="material-icons left">done_all</i>CR / CNR</a>
</li>
<li>
<a href="beautify.html"><i class="material-icons left">brush</i>Beautify Report</a>
</li>
<li>
<a href="javascript:switchTheme()"><i class="material-icons left">wb_sunny</i>Change Theme</a>
</li>
<li>
<a class="modal-trigger " href="#modalConfig"><i class="material-icons left modal-trigger " href="#modalConfig">build</i>Configuration</a>
</li>
</ul>
</div>
</nav>
<ul class="sidenav" id="mobile-nav">
<li>
<a href="#"><i class="material-icons left">add_box</i>Create</a>
</li>
<li>
<a href="edit.html"><i class="material-icons left">update</i>Edit</a>
</li>
<li>
<a href="cnr-cr.html"><i class="material-icons left">done_all</i>CR / CNR</a>
</li>
<li>
<a href="beautify.html"><i class="material-icons left">brush</i>Beautify Report</a>
</li>
<li>
<a href="javascript:switchTheme()"><i class="material-icons left">wb_sunny</i>Change Theme</a>
</li>
<li>
<a class="modal-trigger " href="#modalConfig"><i class="material-icons left modal-trigger " href="#modalConfig">build</i>Configuration</a>
</li>
</ul>
<br />
<div class="column row" id="content">
::before
<h5 style="padding-top: 20px; padding-left: 5px;">Create a Bug Report</h5>
<br>
<div class="callout mbox" style="offset-start: 1cm;">
<strong id="strongThemed2">Before we start</strong>
<ul>
<li style="list-style-type: initial; margin-left: 25px;">Make sure you're reliably able to reproduce the issue. If you don't have reliable reproduction steps please contact <a href="https://dis.gd/support" target="_blank">support</a> instead
</li>
<li style="list-style-type: initial; margin-left: 25px;">Make sure to check the relevant Discord Bugs board to see if your bug hasn't been already reported.</li>
<br />
<li style="list-style-type: initial; margin-left: 25px;">Desktop Bugs: <a href="https://bugs.discord.com/project/view/3/" target="_blank">https://bugs.discord.com/project/view/3/</a></li>
<li style="list-style-type: initial; margin-left: 25px;">Linux Bugs: <a href="https://bugs.discord.com/project/view/18/" target="_blank">https://bugs.discord.com/project/view/18/</a></li>
<li style="list-style-type: initial; margin-left: 25px;">Overlay Bugs: <a href="https://bugs.discord.com/project/view/15/" target="_blank">https://bugs.discord.com/project/view/15/</a></li>
<li style="list-style-type: initial; margin-left: 25px;">Android Bugs: <a href="https://bugs.discord.com/project/view/1/" target="_blank">https://bugs.discord.com/project/view/1/</a></li>
<li style="list-style-type: initial; margin-left: 25px;">iOS Bugs: <a href="https://bugs.discord.com/project/view/2/" target="_blank">https://bugs.discord.com/project/view/2/</a></li>
<li style="list-style-type: initial; margin-left: 25px;">Marketing Bugs: <a href="https://bugs.discord.com/project/view/14/" target="_blank">https://bugs.discord.com/project/view/14/</a></li>
<br>
<br />
<li style="list-style-type: initial; margin-left: 25px;">If you didn't find it to be reported on Discord Bugs you can also use the relevent report channel and use the search command inside of Discord.</li>
<li style="list-style-type: initial; margin-left: 25px;">Please note that this site will NOT submit the bug for you.</li>
<li style="list-style-type: initial; margin-left: 25px;">
If you want to attach an image/video to your report please ask a
<strong class="bh">Bug Squasher (or above)</strong>
or a
<strong class="helper">Jr. Mod</strong>
to attach it for you
</li>
<br />
<li style="list-style-type: initial; margin-left: 25px;">How can I get my client version and system settings</li>
<a class="waves-effect waves-light btn modal-trigger btn-small" style="background-color: #7289da; z-index: 0" href="#modalWin">Windows</a>
<a class="waves-effect waves-light btn modal-trigger btn-small" style="background-color: #7289da; z-index: 0" href="#modalMac">Mac</a>
<a class="waves-effect waves-light btn modal-trigger btn-small" style="background-color: #7289da; z-index: 0" href="#modalAndroid">Android</a>
<a class="waves-effect waves-light btn modal-trigger btn-small" style="background-color: #7289da; z-index: 0" href="#modalIOS">IOS</a>
<a class="waves-effect waves-light btn modal-trigger btn-small" style="background-color: #7289da; z-index: 0" href="#modalBrowser">Browser</a>
</ul>
</div>
<!-- Modal Structure Config-->
<div id="modalConfig" class="modal">
<div class="modal-content" class="modalColor">
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix" style="size: 5px" id="iconThemedWindows">desktop_windows</i>
<textarea id="desktopConfig" class="materialize-textarea" ></textarea>
<label for="desktopConfig" id="resize">Desktop Config</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix" style="size: 5px" id="iconThemedAndroid">android</i>
<textarea id="androidConfig" class="materialize-textarea" ></textarea>
<label for=androidConfig" id="resize">Android Config</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix" style="size: 5px" id="iconThemediOS">phone_iphone</i>
<textarea id="iOSConfig" class="materialize-textarea" ></textarea>
<label for="iOSConfig" id="resize">iOS Config</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix" style="size: 5px" id="iconThemedBrowswer">wifi</i>
<textarea id="browserConfig" class="materialize-textarea" ></textarea>
<label for="browserConfig" id="resize">Browser Config</label>
</div>
</div>
<a class="waves-effect waves-light btn modal-close btn-small" style="background-color: #7289da;" href="#!" onclick="updateConfig()">Save</a></a>
<br />
</div>
</div>
<!-- Modal Structure Windows-->
<div id="modalWin" class="modal">
<div class="modal-content" class="modalColor">
<div style="display: flex; align-items:center;">
<img src="images/assets/Windows.png" alt="Windows" style=" border-radius: 50%; height: 50px; width: 50px">
<strong style=" font-size: 20px; margin-left: 10px" class="blurple">Windows</strong>
</div>
<h6 class="text">How do you get your Windows Version</h6>
<ol>
<li style="list-style-type: auto;">Press Windows Key + r</li>
<li style="list-style-type: auto;">Write <strong class="blurple">winver</strong> </li>
<li style="list-style-type: auto;">Press Enter</li>
<li style="list-style-type: auto;">On the second line you will find your Windows Version.</li>
<img src="images/versions/Windows/ComputerVersion.png" alt="Windows Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
<h6 class="text">How do you get your Discord Version</h6>
<ol>
<li style="list-style-type: auto;">Open the Discord Client</li>
<li style="list-style-type: auto;">Open up the <strong class="blurple">User settings</strong></li>
<li style="list-style-type: auto;">Look at the bottom left</li>
<li style="list-style-type: auto;">Right below the social media links and the log out button you will find your Discord version</li>
<img src="images/versions/Windows/DiscordVersion2.png" alt="Discord Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
<h6 class="text">How do you get your Discord Version #2</h6>
<ol>
<li style="list-style-type: auto;">Open the Discord Client and press Control + r</li>
<li style="list-style-type: auto;">Press Control + Shift + i </li>
<li style="list-style-type: auto;">Now look for the Filter field at the top of the console</li>
<li style="list-style-type: auto;">Inside of that write <strong class="blurple">Build</strong> </li>
<img src="images/versions/Windows/DiscordVersion.png" alt="Discord Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
</div>
<div class="modal-footer" id="modelFooter">
<a href="#!" class="modal-close waves-effect waves-green btn-flat; footerText">Got it</a>
</div>
</div>
<!-- Modal Structure Mac-->
<div id="modalMac" class="modal">
<div class="modal-content" class="modalColor">
<div style="display: flex; align-items:center;">
<img src="images/assets/Apple.png" alt="Mac" style=" border-radius: 50%; height: 50px; width: 50px">
<strong style=" font-size: 20px; margin-left: 10px" class="blurple">Mac</strong>
</div>
<h6 class="text">How do you get your Mac Version</h6>
<ol>
<li style="list-style-type: auto;">Choose Apple menu </li>
<li style="list-style-type: auto;">About This Mac</li>
<img src="images/versions/Mac/ComputerVersion.png" alt="Mac Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
<h6 class="text">How do you get your Discord Version</h6>
<ol>
<li style="list-style-type: auto;">Open the Discord Client</li>
<li style="list-style-type: auto;">Open up the <strong class="blurple">User settings</strong></li>
<li style="list-style-type: auto;">Look at the bottom left</li>
<li style="list-style-type: auto;">Right below the social media links and the log out button you will find your Discord version</li>
<img src="images/versions/Mac/DiscordVersion2.png" alt="Discord Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
<h6 class="text">How do you get your Discord Version #2</h6>
<ol>
<li style="list-style-type: auto;">Open the Discord Client and press CMD + r</li>
<li style="list-style-type: auto;">Press CMD + Option + i </li>
<li style="list-style-type: auto;">Now look for the Filter field at the top of the console</li>
<li style="list-style-type: auto;">Inside of that write <strong class="blurple">Build</strong> </li>
<img src="images/versions/Mac/DiscordVersion.png" alt="Discord Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
</div>
<div class="modal-footer" id="modelFooter">
<a href="#!" class="modal-close waves-effect waves-green btn-flat; footerText">Got it</a>
</div>
</div>
<!-- Modal Structure Android-->
<div id="modalAndroid" class="modal">
<div class="modal-content" class="modalColor">
<div style="display: flex; align-items:center;">
<img src="images/assets/Android.png" alt="Android" style=" border-radius: 50%; height: 50px; width: 50px">
<strong style=" font-size: 20px; margin-left: 10px" class="blurple">Android</strong>
</div>
<h6 class="text">How do you get your Android Version</h6>
<ol>
<li style="list-style-type: auto;">Open the setting application </li>
<li style="list-style-type: auto;">Scroll down until you see either <strong class="blurple">About Phone</strong> or <strong class="blurple">About Device</strong> and tap it</li>
<li style="list-style-type: auto;">Tap <strong class="blurple">Software Info</strong></li>
<img src="images/versions/Android/PhoneVersion.png" alt="Android Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
<h6 class="text">How do you get your Discord Version</h6>
<ol>
<li style="list-style-type: auto;">Open the Discord Client</li>
<li style="list-style-type: auto;">Go to the <strong class="blurple">User Settings</strong> and scroll down</li>
<li style="list-style-type: auto;">Almost at the bottom you will find <strong class="blurple">App Information</strong></li>
<img src="images/versions/Android/DiscordVersion.png" alt="Discord Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
</div>
<div class="modal-footer" id="modelFooter">
<a href="#!" class="modal-close waves-effect waves-green btn-flat; footerText">Got it</a>
</div>
</div>
<!-- Modal Structure IOS-->
<div id="modalIOS" class="modal">
<div class="modal-content" class="modalColor">
<div style="display: flex; align-items:center;">
<img src="images/assets/Apple.png" alt="IOS" style=" border-radius: 50%; height: 50px; width: 50px">
<strong style=" font-size: 20px; margin-left: 10px" class="blurple">IOS</strong>
</div>
<h6 class="text">How do you get your iPhone Version</h6>
<ol>
<li style="list-style-type: auto;">Open the settings app</li>
<li style="list-style-type: auto;">Press <strong class="blurple">General</strong> </li>
<li style="list-style-type: auto;">Press <strong class="blurple">About</strong></li>
<li style="list-style-type: auto;">Press <strong class="blurple">Software information</strong></li>
<img src="images/versions/iOS/PhoneVersion.png" alt="iOS Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
<h6 class="text">How do you get your Discord Version</h6>
<ol>
<li style="list-style-type: auto;">Open the Discord Client</li>
<li style="list-style-type: auto;">Go to the <strong class="blurple">User Settings</strong> and scroll down</li>
<li style="list-style-type: auto;">For TestFlight users open up the TestFlight application</li>
<img src="images/versions/iOS/DiscordVersion.jpg" alt="Discord Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
</div>
<div class="modal-footer" id="modelFooter">
<a href="#!" class="modal-close waves-effect waves-green btn-flat; footerText">Got it</a>
</div>
</div>
<!-- Modal Structure Browser-->
<div id="modalBrowser" class="modal">
<div class="modal-content" class="modalColor">
<div style="display: flex; align-items:center;">
<img src="images/assets/Browser.png" alt="Browser" style=" border-radius: 50%; height: 50px; width: 50px">
<strong style=" font-size: 20px; margin-left: 10px" class="blurple">Browser</strong>
</div>
<h6 class="text">How do you get your Browser Version</h6>
<h6 class="text">Firefox</h6>
<ol>
<li style="list-style-type: auto;">Click the menu icon </li>
<li style="list-style-type: auto;">Click <strong class="blurple">Help</strong> </li>
<li style="list-style-type: auto;">Select <strong class="blurple">About Firefox</strong></li>
<img src="images/versions/Browser/FireFoxVersion.png" alt="Firefox Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
<h6 class="text">Chrome</h6>
<ol>
<li style="list-style-type: auto;">Click the menu icon (Top right of the screen)</li>
<li style="list-style-type: auto;">Then press <strong class="blurple">Help</strong></li>
<li style="list-style-type: auto;">Then tap <strong class="blurple">About Chrome</strong></li>
<img src="images/versions/Browser/ChromeVersion.png" alt="Chrome Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
<h6 class="text">Safari</h6>
<ol>
<li style="list-style-type: auto;">Click the <strong class="blurple">Safari</strong> icon </li>
<li style="list-style-type: auto;">In the menu bar, click <strong class="blurple">Safari</strong></li>
<li style="list-style-type: auto;">Then choice <strong class="blurple">About Safari</strong></li>
<img src="images/versions/Browser/SafariVersion.png" alt="Safari Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
<h6 class="text">Edge</h6>
<ol>
<li style="list-style-type: auto;">Click the menu icon (Top right of the the screen) </li>
<li style="list-style-type: auto;">Press <strong class="blurple">Settings</strong></li>
<li style="list-style-type: auto;">Scroll down</li>
<img src="images/versions/Browser/EdgeVersion.png" alt="Edge Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
<h6 class="text">How do you get your Discord Version</h6>
<ol>
<li style="list-style-type: auto;">Go to <a href="https://discord.com/channels/@me" target="-_blank">Discord</a> </li>
<li style="list-style-type: auto;">Refresh the website </li>
<li style="list-style-type: auto;">Open up the developer console </li>
<li style="list-style-type: auto;">Chrome (Windows): Control + Shift + J, Chrome (Mac): Control + Option + J</li>
<li style="list-style-type: auto;">Firefox (Windows): Control + Shift + K, Chrome (Mac): Control + Option + K</li>
<li style="list-style-type: auto;">Edge: F12</li>
<li style="list-style-type: auto;">Safari: Inside of the Develop tab, press <strong class="blurple">Show JavaScript Console</strong> (You will need to enable developer mode for this)</li>
<li style="list-style-type: auto;">Inside of that write <strong class="blurple">Build</strong> </li>
<img src="images/versions/Browser/DiscordVersion.png" alt="Discord Version Image" style=" width: 80%; height: auto;">
</ol>
<br />
</div>
<div class="modal-footer" id="modelFooter">
<a href="#!" class="modal-close waves-effect waves-green btn-flat; footerText">Got it</a>
</div>
</div>
<br />
<div class="row" style="z-index: 2">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix" style="size: 5px" id="iconThemed0">description</i>
<textarea id="shortDesc" class="materialize-textarea" data-length="150" maxlength="150"></textarea>
<label for="shortDesc" id="resize">Short Description</label>
<span class="helper-text" style="color: #9e9e9e">In a few sentences describe what is your issue. Avoid using words as 'glitch' or 'bug'</span>
</div>
</div>
</div>
<div class="row" style="z-index: 2">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix" style="size: 5px" id="iconThemed1">create</i>
<textarea id="str" class="materialize-textarea" data-length="175" maxlength="175"></textarea>
<label for="str" id="resize1">Steps to Reproduce</label>
<span class="helper-text" style="color: #9e9e9e">Try to make your reproduction steps as easy to follow as possible.</span>
<br>
<a onclick="newElement()" class="waves-effect waves-light btn" style="z-index: 0; background-color: #7289da">Add</a>
<ul id="myUL" class="collection" style="border:none;">
</ul>
</div>
</div>
</form>
</div>
<div class="row" style="z-index: 2">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix" id="iconThemed2">star_border</i>
<textarea id="expected" class="materialize-textarea" data-length="175" maxlength="175"></textarea>
<label for="expected">Expected Result</label>
<span class="helper-text" style="color: #9e9e9e">Describe what should happen if the bug didn't exist</span>
</div>
</div>
</form>
</div>
<div class="row" style="z-index: 2">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix" id="iconThemed3">star</i>
<textarea id="actual" class="materialize-textarea" data-length="175" maxlength="175"></textarea>
<label for="actual">Actual Result</label>
<span class="helper-text" style="color: #9e9e9e">Describe what actually happens if you follow your reproduction steps</span>
</div>
</div>
</form>
</div>
<div class="row" style="z-index: 2">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix" id="iconThemed4">computer</i>
<textarea id="clientVers" class="materialize-textarea" data-length="125" maxlength="125"></textarea>
<label for="clientVers">Client Version</label>
<span class="helper-text" style="color: #9e9e9e">Client settings should contain your Discord version. Example: Android Alpha 20.4</span>
</div>
</div>
</form>
</div>
<div class="row" style="z-index: 2">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix" id="iconThemed5">settings</i>
<textarea id="systemVers" class="materialize-textarea" data-length="125" maxlength="125"></textarea>
<label for="systemVers">System Settings</label>
<span class="helper-text" style="color: #9e9e9e; ">System Settings should contain your Device model and Android version Example: Xiaomi Redmi 4d, Android 7</span>
<br>
<a class="waves-effect waves-light btn btn-small" style="background-color: #7289da;" onclick="loadConfig('desktopConfig')">Desktop</a></a>
<a class="waves-effect waves-light btn btn-small" style="background-color: #7289da;" onclick="loadConfig('androidConfig')">Android</a></a>
<a class="waves-effect waves-light btn btn-small" style="background-color: #7289da;" onclick="loadConfig('iOSConfig')">iOS</a></a>
<a class="waves-effect waves-light btn btn-small" style="background-color: #7289da;" onclick="loadConfig('browserConfig')">Browser</a></a>
</div>
</div>
</form>
</div>
<div class="column row" id="content">
<button id="copy" class="waves-effect waves-light btn" disabled style="background-color: #7289da">Copy</button>
<div class="callout mbox" style="offset-start: 1cm; font-size: 20px;" id="command"></div>
<br />
</div>
<footer style="text-align: center">
Created by <a href="https://github.com/y3ll0wlife" target="_blank"> y3ll0w</a> and <a href="https://github.com/KlukCZ" target="_blank">KlukCZ</a>
<br>
Have a feature request or a bug? Post it on our <a href="https://github.com/TeamBulbbot/bug-report-tool/issues" target="_blank">issue tracker</a>!
</footer>
<!-- Javascript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-beta/js/materialize.min.js"></script>
<script src="js/theme.js"></script>
<script src="js/create.js"></script>
<script src="js/copy.js"></script>
<script src="js/easteregg.js"></script>
</div>
</body>
</html>