-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
72 lines (68 loc) · 2.38 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
<!-- Copyright (c) 2023 Outspect. All rights reserved. -->
<!-- This code is owned by Outspect. Unauthorized copying or reproduction is prohibited. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Moon Buddies Menu</title>
</head>
<body>
<div class="container">
<h1 class="title">Moon Buddies Menu</h1>
<div class="boxes">
<div class="box">
<h2>Get It Now</h2>
<p>Ready to try our mod menu? Just tap 'Buy Now' and choose a payment method to make it yours.</p>
<a href="https://spezz.exchange/store/store/product/164-moon-mod-menu/" class="button">Buy Now</a>
</div>
<div class="box">
<h2>Join Our Discord</h2>
<p>Stay in the loop by joining our Discord. Connect with fellow Moon Buddies, receive the latest updates, and never miss a beat.</p>
<a href="https://discord.gg/moonbuddies" class="button">Join Discord</a>
</div>
<div class="box">
<h2>Facing HWID Issues?</h2>
<p>Having trouble with your key? Reset it conveniently. Enter your key below, and you'll regain access without any hassle.</p>
<div>
<input type="text" id="hwid-input" class="dark-mode-textbox" placeholder="Enter your key...">
</div>
<a href="#" class="button" id="reset-hwid-button">Reset HWID</a>
</div>
</div>
<div class="patch-notes">
<h2>Patch Notes</h2>
<div class="patch-table">
<table>
<tr>
<th>Date</th>
<th>Version</th>
<th>Changes</th>
</tr>
<tr>
<tr>
<td>November 8th</td>
<td>Latest</td>
<td>
<ul>
<li><span class="green-text">[+] </span>Moon is back, join the discord for more information.</li>
</ul>
</td>
</tr>
</table>
</div>
</div>
</div>
<script>
const resetButton = document.getElementById("reset-hwid-button");
const hwidInput = document.getElementById("hwid-input");
resetButton.addEventListener("click", function () {
const userInput = hwidInput.value;
if (userInput) {
window.location.href = `https://www.google.com/search?q=${userInput}`;
}
});
</script>
</body>
</html>