-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (96 loc) · 2.81 KB
/
Copy pathindex.html
File metadata and controls
106 lines (96 loc) · 2.81 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>N* Chain AI layer 2</title>
<link href="https://fonts.googleapis.com/css2?family=Lexend&display=swap" rel="stylesheet" />
<style>
body {
background-color: #f0f4f8;
font-family: 'Lexend', sans-serif;
text-align: center;
margin-top: 60px;
}
h1 {
color: #333;
}
.link-button {
display: inline-block;
padding: 15px 25px;
font-size: 18px;
color: white;
background-color: #4caf50;
text-decoration: none;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: background-color 0.2s;
margin-bottom: 40px;
}
.link-button:hover {
background-color: #45a049;
}
textarea {
width: 60%;
height: 100px;
font-size: 16px;
padding: 10px;
border-radius: 8px;
border: 1px solid #ccc;
resize: vertical;
font-family: 'Lexend', sans-serif;
}
button {
margin-top: 10px;
padding: 10px 20px;
font-size: 16px;
border: none;
background-color: #2196f3;
color: white;
border-radius: 8px;
cursor: pointer;
}
button:hover {
background-color: #1e88e5;
}
</style>
</head>
<body>
<h1>N* Chain AI Layer 2 VIP Services</h1>
<a class="link-button" href="https://files.xplodingeggo.shop/" target="_blank">📁 File Browser</a>
<h2>Write Something Fun (powered by freakbob inc)</h2>
<textarea id="message" placeholder="Type your message here! 💌"></textarea><br />
<button onclick="sendMessage()">Send!</button>
<p id="status" style="margin-top: 20px;"></p>
<script>
// Load the saved message when page loads
window.onload = function () {
fetch("/load")
.then((res) => res.json())
.then((data) => {
document.getElementById("message").value = data.text || "";
})
.catch((err) => {
console.log("Error loading note:", err);
});
};
function sendMessage() {
const message = document.getElementById("message").value;
fetch("/save", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({ text: message }),
})
.then((res) => res.text())
.then((data) => {
document.getElementById("status").innerText = "Saved! ✅";
})
.catch((err) => {
document.getElementById("status").innerText = "Oops, error saving 💔";
});
}
</script>
</body>
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fimagedelivery.net%2FLBWXYQ-XnKSYxbZ-NuYGqQ%2Fef44e4ff-78fb-4789-53bc-f21e4d745000%2Favatarhd&f=1&nofb=1&ipt=50e534ccf1cdb17aa10302db79eafa37fa31349333ddddb083f8b9300f4f1826" alt="Freakbob" />
</html>