-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (77 loc) · 2.48 KB
/
index.html
File metadata and controls
85 lines (77 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FileAPI.ld - Unavailable</title>
<style>
body {
margin: 0;
padding: 0;
min-height: 100vh;
background: linear-gradient(45deg, #008dff, #a151ff);
background-size: 400% 400%;
animation: gradient 12s ease infinite;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
color: rgba(255, 255, 255, 0.92);
background-color: #121212;
}
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.container {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 2rem;
background: rgba(18, 18, 18, 0.9);
border-radius: 16px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
backdrop-filter: blur(8px);
max-width: 90%;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
letter-spacing: -0.03em;
}
.message {
font-size: 1.1rem;
line-height: 1.6;
opacity: 0.85;
max-width: 600px;
margin: 0 auto;
}
.warning-icon {
font-size: 3rem;
margin-bottom: 1.5rem;
display: block;
}
@media (max-width: 768px) {
.container {
padding: 1.5rem;
width: 85%;
}
h1 {
font-size: 2rem;
}
.message {
font-size: 1rem;
}
}
</style>
</head>
<body>
<div class="container">
<span class="warning-icon">⚠️</span>
<h1>FileAPI.ld Access Restricted</h1>
<p class="message">
This API endpoint is currently unavailable for public use. Access is strictly limited to authorized ld.team members only. Unauthorized attempts to interact with the API will be logged and may result in permanent IP blocking. Please contact the system administrator if you believe you should have access.
</p>
</div>
</body>
</html>