-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (37 loc) · 1.3 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
<!DOCTYPE html>
<html>
<header>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<link rel="stylesheet" href="style.css" />
<title>token lookup</title>
</header>
<body>
<div class="container">
<div class="main">
<input class="input_main" type="text" placeholder="Token here" />
<button class="default_button" onclick="checkToken()">Submit</button>
</div>
<br />
<br />
<div class="image">
<img class="avatar hide" id="profile" />
</div>
<ul class="list_group hide">
<li class="list_item" id="tag">tag</li>
<li class="list_item" id="email">email</li>
<li class="list_item" id="verified">verified</li>
<li class="list_item" id="id">id</li>
<li class="list_item" id="locale">locale</li>
<li class="list_item" id="phone">phone</li>
<li class="list_item" id="phoneblocked">phoneblocked</li>
</ul>
<button class="default_button hide" id="copybtn" onclick="copyValues()">Copy All</button>
<span class="alert hide" id="alert">Invalid Token</span>
</div>
<footer>
<span class="a_container">[<a href="https://www.github.com/xnacly">Github</a>]</span>
<span class="a_container"> [<a href="https://www.github.com/xnacly/tokenchecker-website">Repo</a>] </span>
</footer>
</body>
<script src="scripts/main.js"></script>
</html>