-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (81 loc) · 3.55 KB
/
index.html
File metadata and controls
91 lines (81 loc) · 3.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Discord HypeSquad Badge Manager</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="./images/logo.png">
<link rel="apple-touch-icon" href="./images/logo.png">
<meta name="google-site-verification" content="1xWTL9GsVehj53Mtymtb0oI0csOm-fOOo1C4YwpJl0o" />
</head>
<body>
<div class="container">
<div class="header">
<h1>Discord HypeSquad Badge Manager</h1>
<p>Easily manage your Discord HypeSquad badges</p>
</div>
<div class="main-content">
<!-- Login Section -->
<div id="loginSection" class="token-section">
<label for="token">Discord Token:</label>
<div class="input-wrapper">
<input type="password" id="token" placeholder="Enter your Discord token here..." autocomplete="off">
<button id="toggleToken" class="toggle-btn" title="Show/Hide Token">👁️</button>
</div>
</div>
<!-- Profile Section (Hidden by default) -->
<div id="profileSection" class="profile-section hidden">
<div class="profile-card">
<img id="userAvatar" src="" alt="Avatar" class="profile-avatar">
<div class="profile-info">
<span class="profile-label">Connected as:</span>
<h3 id="username">User</h3>
</div>
<button id="logoutBtn" class="logout-btn" title="Logout">
❌
</button>
</div>
</div>
<div class="badge-selection">
<h3>Select HypeSquad Badge:</h3>
<div class="badge-options">
<div class="badge-option" data-house="2">
<div class="badge-icon">
<img src="images/hypesquadbravery.svg" alt="Bravery">
</div>
<span>Bravery</span>
</div>
<div class="badge-option" data-house="3">
<div class="badge-icon">
<img src="images/hypesquadbrilliance.svg" alt="Brilliance">
</div>
<span>Brilliance</span>
</div>
<div class="badge-option" data-house="1">
<div class="badge-icon">
<img src="images/hypesquadbalance.svg" alt="Balance">
</div>
<span>Balance</span>
</div>
</div>
</div>
<div class="action-buttons">
<button id="setBadge" class="action-btn set-btn" disabled>Add Badge</button>
<button id="removeBadge" class="action-btn remove-btn">Remove Badge</button>
</div>
<div class="status-section">
<div id="status" class="status-message"></div>
<div id="loading" class="loading hidden">
<div class="spinner"></div>
<span>Processing...</span>
</div>
</div>
</div>
<div class="footer">
<p>⚠️ <strong>Warning:</strong> Never share your Discord token with anyone!</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>