forked from lewisakura/discord-flags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (100 loc) · 4.79 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
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Discord Flags</title>
<meta name="og:title" content="Discord Flags">
<meta name="og:description" content="Document the undocumented.">
<meta name="og:site_name" content="Discord Flags">
<link rel="stylesheet" href="css/bulma-material.min.css">
<link rel="stylesheet" href="css/bulma-tooltip.min.css">
<link rel="stylesheet" href="css/fontawesome.min.css">
<link rel="stylesheet" href="css/solid.min.css">
<style>
/* fixes bug where icon is just inside text */
.button .icon:first-child:last-child {
margin-right: 0;
}
/* removes the ugly stuff that comes from using tooltips */
.fa-stack[data-tooltip] {
border-bottom: none !important;
cursor: default !important;
}
</style>
<link rel="icon" href="img/favicon.svg">
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title"><i class="fas fa-flag"></i> Discord Flags</h1>
<h2 class="subtitle">Document the undocumented.</h2>
<div class="columns">
<div class="column is-two-thirds">
<h2 class="subtitle">Known Flags</h2>
<table id="knownFlags" class="table">
<tr>
<th>Name</th>
<th>Number</th>
<th>Description</th>
</tr>
</table>
</div>
<div class="column">
<h2 class="subtitle">Check Flags</h2>
<form id="flagForm">
<div class="field">
<label class="label">Flag Number <a href="#" id="helpLink"><i class="fas fa-question-circle"></i></a></label>
<div class="control">
<input class="input" type="number" id="flags">
</div>
</div>
<div class="field">
<input class="button" type="submit" value="Get Flags">
</div>
</form>
<div class="field">
<label class="label">Result</label>
<div class="control">
<span id="result">N/A</span>
</div>
</div>
<p>
We're currently performing research into flags. If possible, please <a href="https://forms.gle/FsdMerqjayMuziRdA">submit this form</a> so we can gather more information. It'll help improve the site for everyone!
</p>
</div>
</div>
<i><span data-tooltip="Found">Captured</span> a flag? <a
href="https://github.com/LewisTehMinerz/discord-flags/issues/new?labels=flag&template=flag-submission.md&title=Flag+Caught%3A+%5BNAME%5D">Submit
it!</a></i>
</div>
</section>
<div class="modal" id="helpModal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">How do I get flags?</p>
<button class="delete" id="closeHelpModal"></button>
</header>
<section class="modal-card-body">
<p>
<i>Click on any image for higher quality.</i>
<li>Open Discord DevTools</li>
<a href="img/guide-1.png" target="_blank"><img src="img/guide-1.png"></a>
<li>Go to network</li>
<a href="img/guide-2.png" target="_blank"><img src="img/guide-2.png"></a>
<li>In Discord, click on anyone and open their profile</li>
<a href="img/guide-3.png" target="_blank"><img src="img/guide-3.png"></a>
<li>In DevTools, look for "profile"</li>
<a href="img/guide-4.png" target="_blank"><img src="img/guide-4.png"></a>
<li>Click on it and go to the "Preview" tab and look for "user"</li>
<a href="img/guide-5.png" target="_blank"><img src="img/guide-5.png"></a>
<i>Note: None of this information is sensitive, I only blurred it out because it is not relevant.</i>
<li>Expand "user" and you will find "flags", those are the flags</li>
<a href="img/guide-6.png" target="_blank"><img src="img/guide-6.png"></a>
</p>
</section>
</div>
</div>
<script src="js/flags.js"></script>
</body>
</html>