-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (50 loc) · 2.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Discord Profile Checker </title>
<meta name="description" content="A website to check discord users' profiles by providing their IDs">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<script defer data-domain="mohamad.is-a.dev" src="https://analytics.is-a.dev/js/script.js"></script>
</head>
<body>
<div class="container">
<div class="box">
<h1 class="duc"> Discord Proile Checker</h1>
<div class="profile">
<div class="status-container">
<img id="avatar" class="pic"
src="discord.png"
alt="profile-pic">
<img id="status" src="offline.png">
</div>
</div>
<div class="user-box">
<p id="user-id">User ID: 685435867849818122</p>
<p id="user-username">Username: mohamaddev</p>
<p id="user-discrim">Discriminator: #0</p>
<p id="user-flags">Badge(s):HOUSE_BRILLIANCE - ACTIVE_DEVELOPER</p>
<p id="user-banner-color">Banner Color: #0</p>
<p id="user-accent-color">Accent Color: #0</p>
</div>
</div>
<div class="lookup-container">
<div class="instruction">
<h4>User's ID goes here</h4>
<input name="text-input" type="text" placeholder="ID">
<h1 onclick="submit()" class="button">Submit</h1>
</div>
<a style="text-align: center;
color: #5865F2;
margin-top: 1rem" href="/dpc/about">About • FAQ</a>
</div>
</div>
<div class="footer">
<p>made by <a href="https://mohamad.is-a.dev" style="text-decoration: none; color: #00a9e2;">mohamaddev</a></p>
</div>
</div>
<script type="text/javascript" src="submit.js"></script>
</body>
</html>