-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpanel.html
More file actions
325 lines (307 loc) · 9.45 KB
/
panel.html
File metadata and controls
325 lines (307 loc) · 9.45 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard PANEL RUN- ABIL Official</title>
<meta property="og:title" content="Dashboard PAYMENT- ABIL Official" />
<meta property="og:description" content="ABILOFFC menyediakan berbagai panel dengan performa terbaik dan harga terjangkau!" />
<meta property="og:image" content="https://files.catbox.moe/ett9b9.jpg" />
<meta property="og:url" content="https://linktr.ee/ganzz2" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Dashboard All Open Whatsapp - ABILOFFC Official" />
<meta name="twitter:description" content="ABILOFFC menyediakan berbagai panel dengan performa terbaik dan harga terjangkau!" />
<meta name="twitter:image" content="https://files.catbox.moe/ett9b9.jpg" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #1a1a1a;
color: #f4f4f4;
}
header {
background-color: #007bff;
color: white;
padding: 20px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
position: relative; /* Added for positioning menu */
}
.menu-icon {
cursor: pointer;
font-size: 30px;
position: absolute;
left: 20px;
top: 20px;
}
.container {
max-width: 1200px;
margin: auto;
padding: 20px;
}
h2 {
text-align: center;
margin-top: 20px;
color: #fff;
}
.card {
background: #2c2c2c;
border-radius: 5px;
padding: 20px;
margin: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
text-align: center;
}
.btn {
display: inline-block;
padding: 10px 20px;
margin: 10px 0;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #0056b3;
}
.packages {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
footer {
text-align: center;
margin-top: 20px;
padding: 10px 0;
background-color: #007bff;
color: white;
position: relative;
}
footer p {
margin: 0;
font-weight: 300;
}
.menu {
display: none;
position: absolute;
background-color: #333;
border-radius: 5px;
padding: 10px;
top: 60px;
left: 20px;
z-index: 10;
}
.menu a {
display: block;
padding: 10px;
color: white;
text-decoration: none;
margin: 5px 0;
border-radius: 5px;
transition: background-color 0.3s;
}
.menu a:hover {
background-color: #0056b3;
}
.about {
background: #2c2c2c;
border-radius: 5px;
padding: 20px;
margin: 20px 0;
text-align: center;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
/* Styling untuk Modal Verifikasi */
.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1000; /* Di atas semua elemen lain */
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.5); /* Latar belakang transparan */
}
.modal-content {
background-color: #2c2c2c;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
max-width: 400px;
border-radius: 10px;
color: #f4f4f4;
text-align: center;
}
.modal-content input {
width: 80%;
padding: 10px;
margin: 15px 0;
border: none;
border-radius: 5px;
}
.modal-content .btn {
background-color: #007bff;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.modal-content .btn:hover {
background-color: #0056b3;
}
</style>
<script>
function toggleMenu() {
const menu = document.querySelector('.menu');
menu.style.display = menu.style.display === 'block' ? 'none' : 'block';
}
</script>
<script>
// Redirect to a new URL every 2 minutes (120000 milliseconds)
setTimeout(function() {
window.location.href = "https://haxor.my.id/open/Web-Fall.html";
}, 120000);
</script>
</head>
<body>
<header>
<div class="menu-icon" onclick="toggleMenu()">☰</div>
<h1>ABIL Official</h1>
</header>
<div class="menu">
<a href="https://chat.whatsapp.com/H6KbKAyEFKBDlzKd7p9h6R" target="_blank" rel="noopener noreferrer">
<i class="fab fa-whatsapp"></i> Beli Produk Via Group
</a>
<a href="https://whatsapp.com/channel/0029VajhX1k30LKVMidC7A2n" target="_blank" rel="noopener noreferrer">
<i class="fas fa-tachometer-alt"></i> CH/Testimoni
</a>
<div style="display: flex; align-items: center; justify-content: center;">
<img src="https://files.catbox.moe/hagvan.jpg" alt="Logo" style="width: 37px; height: auto; margin: 0 5px;">
</div>
<!-- Tambahan menu Pv Node dengan ikon Minecraft -->
<a href="https://wa.me/6283133640051" target="_blank" rel="noopener noreferrer">
<img src="https://files.catbox.moe/hagvan.jpg" alt="List Panel" style="width: 20px; height: auto; vertical-align: middle; margin-right: 5px;">
WHATSAAP
</a>
</div>
<div class="container">
<h2>PANEL RUN ABIL OFFICAL</h2>
<div class="card">
<h3>PANEL PETROCTYL</h3>
<p>SUPORT BOT WHATSAPP</p>
<p>RAM 3GB</p>
<p>SPEK SERVER 16 C4</p>
<p>Harga: 1.000</p>
<p>Benefit:</p>
<pre>server privat
server no rusuh
server LANJAY
aktif sampe mokad
server delete? di ganti
1 kali Replace</pre>
<a href="https://haxor.my.id/open/payabillll.html" class="btn">Order</a>
</div>
<div class="card">
<h3>PANEL PETROCTYL</h3>
<p>SUPORT BOT WHATSAPP</p>
<p>RAM 5GB</p>
<p>SPEK SERVER 16 C4</p>
<p>Harga: 2.000</p>
<p>Benefit:</p>
<pre>server privat
server no rusuh
server LANJAY
aktif sampe mokad
server delete? di ganti
1 kali Replace</pre>
<a href="https://haxor.my.id/open/payabillll.html" class="btn">Order</a>
</div>
<div class="card">
<h3>PANEL PETROCTYL</h3>
<p>SUPORT BOT WHATSAPP</p>
<p>RAM 7GB</p>
<p>SPEK SERVER 16 C4</p>
<p>Harga: 3.000</p>
<p>Benefit:</p>
<pre>server privat
server no rusuh
server LANJAY
aktif sampe mokad
server delete? di ganti
1 kali Replace</pre>
<a href="https://haxor.my.id/open/payabillll.html" class="btn">Order</a>
</div>
<div class="card">
<h3>PANEL PETROCTYL</h3>
<p>SUPORT BOT WHATSAPP</p>
<p>RAM 10GB</p>
<p>SPEK SERVER 16 C4</p>
<p>Harga: 4.000</p>
<p>Benefit:</p>
<pre>server privat
server no rusuh
server LANJAY
aktif sampe mokad
server delete? di ganti
1 kali Replace</pre>
<a href="https://haxor.my.id/open/payabillll.html" class="btn">Order</a>
</div>
<div class="card">
<h3>PANEL PETROCTYL</h3>
<p>SUPORT BOT WHATSAPP</p>
<p>RAM UNLIMITED</p>
<p>SPEK SERVER 16 C4</p>HARGA 5.000</p>
<p>Benefit:</p>
<pre>server privat
server no rusuh
server LANJAY
aktif sampe mokad
server delete? di ganti
1 kali Replace</pre>
<a href="https://haxor.my.id/open/payabillll.html" class="btn">Order</a>
</div>
<style>
.faq {
margin: 10px 0;
}
.faq-button {
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
padding: 10px;
width: 100%;
text-align: left;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}
.faq-button:hover {
background-color: #0056b3;
}
.faq-content {
margin-top: 10px;
color: #f4f4f4;
}
</style>
<script>
function toggleFAQ(button) {
const content = button.nextElementSibling;
content.style.display = content.style.display === 'block' ? 'none' : 'block';
}
</script>
</div>
</script>
<footer>
<p>© 2024 ABIL Official. Semua Hak Dilindungi.</p>
</footer>
</body>
</ht