-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient-info-rp-trader.html
More file actions
735 lines (618 loc) · 21.9 KB
/
client-info-rp-trader.html
File metadata and controls
735 lines (618 loc) · 21.9 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
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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Client Information | ExploitInject</title>
<!-- Favicon -->
<link rel="icon" href="https://i.ibb.co.com/B2x3tjTn/RP-TRADER.png" type="image/png">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&display=swap" rel="stylesheet">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Montserrat", sans-serif;
}
body {
background: #05070e;
color: #e5e7eb;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 40px 15px;
}
.form-container {
width: 100%;
max-width: 1000px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.12);
backdrop-filter: blur(16px);
border-radius: 16px;
padding: 40px;
box-shadow: 0 0 40px rgba(0, 234, 255, 0.12);
animation: fadeUp 1s ease;
}
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* ---------- BRAND HEADER ---------- */
.brand-header {
text-align: center;
margin-bottom: 35px;
}
.brand-header a {
text-decoration: none;
}
.brand-logo {
width: 70px;
height: 70px;
border-radius: 14px;
margin-bottom: 10px;
box-shadow: 0 0 20px rgba(0, 234, 255, 0.4);
animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-6px);
}
}
.brand-name {
font-size: 32px;
font-weight: 800;
color: #00eaff;
letter-spacing: 1px;
text-shadow: 0 0 10px rgba(0, 234, 255, 0.6);
}
.brand-subtitle {
font-size: 14px;
color: #bfc9d4;
margin-top: 6px;
}
/* ---------- FORM LAYOUT ---------- */
.form-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-bottom: 25px;
}
@media (max-width: 768px) {
.form-grid {
grid-template-columns: 1fr;
}
}
.form-group {
margin-bottom: 22px;
}
.form-group.full-width {
grid-column: 1 / -1;
}
.form-group label {
display: block;
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
color: #cfd8e3;
}
.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 14px 16px;
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.15);
background: rgba(0, 0, 0, 0.45);
color: #ffffff;
outline: none;
transition: 0.3s;
font-size: 14px;
}
.form-group textarea {
min-height: 100px;
resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: #9aa4af;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
border-color: #00eaff;
box-shadow: 0 0 12px rgba(0, 234, 255, 0.5);
background: rgba(0, 0, 0, 0.6);
}
select option {
background: #05070e;
color: #fff;
}
.form-group .file-info {
font-size: 12px;
color: #9aa4af;
margin-top: 5px;
}
/* ---------- SECTION HEADERS ---------- */
.section-header {
grid-column: 1 / -1;
font-size: 18px;
font-weight: 700;
color: #00eaff;
margin: 30px 0 15px 0;
padding-bottom: 10px;
border-bottom: 1px solid rgba(0, 234, 255, 0.3);
}
.section-header:first-of-type {
margin-top: 0;
}
/* ---------- BUTTON ---------- */
.submit-btn {
width: 100%;
padding: 16px;
border-radius: 12px;
border: none;
background: #00eaff;
color: #000;
font-size: 16px;
font-weight: 700;
cursor: pointer;
transition: 0.35s;
box-shadow: 0 0 20px rgba(0, 234, 255, 0.6);
margin-top: 10px;
}
.submit-btn:hover {
box-shadow: 0 0 35px rgba(0, 234, 255, 0.9);
transform: translateY(-2px);
}
.submit-btn:disabled {
opacity: 0.7;
cursor: not-allowed;
}
/* ---------- FOOTER ---------- */
.footer-note {
margin-top: 25px;
text-align: center;
font-size: 13px;
color: #9ca3af;
}
/* ---------- MESSAGES ---------- */
.success-message {
text-align: center;
padding: 30px;
background: rgba(0, 255, 136, 0.1);
border: 1px solid rgba(0, 255, 136, 0.3);
border-radius: 12px;
margin-top: 20px;
display: none;
}
.success-icon {
font-size: 48px;
color: #00ff88;
margin-bottom: 15px;
}
.success-text {
color: #00ff88;
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
.redirect-note {
color: #bfc9d4;
font-size: 14px;
}
.error-message {
text-align: center;
padding: 15px;
background: rgba(255, 68, 68, 0.1);
border: 1px solid rgba(255, 68, 68, 0.3);
border-radius: 8px;
margin-top: 20px;
color: #ff4444;
display: none;
}
/* ---------- BADGE ---------- */
.forminit-badge {
display: inline-block;
background: rgba(0, 234, 255, 0.1);
padding: 8px 16px;
border-radius: 20px;
font-size: 12px;
color: #00eaff;
margin-top: 15px;
border: 1px solid rgba(0, 234, 255, 0.3);
}
/* ---------- FILE UPLOAD STYLING ---------- */
.file-upload-wrapper {
position: relative;
overflow: hidden;
display: inline-block;
width: 100%;
}
.file-upload-wrapper input[type=file] {
position: absolute;
left: 0;
top: 0;
opacity: 0;
width: 100%;
height: 100%;
cursor: pointer;
}
.file-upload-button {
display: block;
padding: 14px 16px;
background: rgba(0, 234, 255, 0.1);
border: 1px dashed rgba(0, 234, 255, 0.3);
border-radius: 10px;
color: #00eaff;
text-align: center;
cursor: pointer;
transition: 0.3s;
}
.file-upload-button:hover {
background: rgba(0, 234, 255, 0.2);
border-color: #00eaff;
}
.file-name {
margin-top: 8px;
font-size: 12px;
color: #9aa4af;
word-break: break-all;
}
</style>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "ExploitInject",
"url": "https://exploitinject.dev/client-info-rp-trader.html",
"logo": "https://i.ibb.co/JWrx9kZG/Simple-Profile-Photo-Instagram-Post.png",
"description": "Bangladesh-based startup providing Web Development, App Development and Cyber Security Training.",
"sameAs": [
"https://www.facebook.com/ExploitInject",
"https://www.instagram.com/expl.oitinject/",
"https://x.com/ExploitInject",
"https://wa.me/+8801575120682",
"https://m.me/ExploitInject",
"https://www.facebook.com/groups/exploitinject",
"https://github.com/ExploitInject"
]
}
</script>
</head>
<body>
<div class="form-container">
<!-- BRAND HEADER -->
<div class="brand-header">
<a href="https://exploitinject.dev/
<img src=" https://i.ibb.co/JWrx9kZG/Simple-Profile-Photo-Instagram-Post.png" alt="ExploitInject Logo"
class="brand-logo" />
<div class="brand-name">ExploitInject</div>
</a>
<div class="brand-subtitle">Complete Client Information Portal</div>
<div class="forminit-badge">Powered by ExploitInject</div>
</div>
<!-- FORM -->
<form id="clientForm">
<div class="form-grid">
<!-- SECTION: BASIC INFORMATION -->
<div class="section-header">Basic Information</div>
<div class="form-group">
<label>First Name *</label>
<input type="text" name="fi-sender-firstName" placeholder="Enter your first name" required>
</div>
<div class="form-group">
<label>Last Name *</label>
<input type="text" name="fi-sender-lastName" placeholder="Enter your last name" required>
</div>
<div class="form-group">
<label>Email *</label>
<input type="email" name="fi-sender-email" placeholder="your.email@example.com" required>
</div>
<!-- SECTION: PUBLIC CHANNELS -->
<div class="section-header">Public Channels</div>
<div class="form-group">
<label>Public WhatsApp Channel *</label>
<input type="url" name="fi-url-whatsapp_channel" placeholder="https://whatsapp.com/channel/..." required>
</div>
<div class="form-group">
<label>Public Telegram Channel *</label>
<input type="url" name="fi-url-telegram_channel" placeholder="https://t.me/..." required>
</div>
<!-- SECTION: COMPANY INFORMATION -->
<div class="section-header">Company Information</div>
<div class="form-group">
<label>Company WhatsApp Number *</label>
<input type="tel" name="fi-phone-company_whatsapp" placeholder="+912345678901" pattern="^\+[1-9]\d{1,14}$"
title="Enter a valid international phone number starting with +" required>
</div>
<div class="form-group">
<label>Company Location</label>
<input type="text" name="fi-text-company_location" placeholder="City, Country">
</div>
<div class="form-group">
<label>Company Website Link</label>
<input type="url" name="fi-url-company_website" placeholder="https://yourcompany.com">
</div>
<!-- SECTION: REFERRAL LINKS -->
<div class="section-header">Referral Links</div>
<div class="form-group">
<label>Pocket Option Referral Link *</label>
<input type="url" name="fi-url-pocket_option" placeholder="https://..." required>
</div>
<div class="form-group">
<label>Quotex Referral Link *</label>
<input type="url" name="fi-url-quotex" placeholder="https://..." required>
</div>
<div class="form-group">
<label>Exness Referral Link *</label>
<input type="url" name="fi-url-exness" placeholder="https://..." required>
</div>
<!-- SECTION: SUPPORT INFORMATION -->
<div class="section-header">Support Information</div>
<div class="form-group">
<label>Support Email Address *</label>
<input type="email" name="fi-email-support_email" placeholder="support@example.com" required>
</div>
<div class="form-group">
<label>Support Mobile Number *</label>
<input type="tel" name="fi-phone-support_number" placeholder="+912345678901" pattern="^\+[1-9]\d{1,14}$"
title="Enter a valid international phone number starting with +" required>
</div>
<div class="form-group">
<label>Support WhatsApp Number *</label>
<input type="tel" name="fi-phone-support_whatsapp" placeholder="+912345678901" pattern="^\+[1-9]\d{1,14}$"
title="Enter a valid international phone number starting with +" required>
</div>
<div class="form-group">
<label>Support Telegram Username</label>
<input type="text" name="fi-text-support_telegram" placeholder="@username">
</div>
<div class="form-group">
<label>Support Working Hours</label>
<input type="text" name="fi-text-support_hours" placeholder="e.g., 9 AM - 6 PM (GMT+5:30)">
</div>
<!-- SECTION: ADMIN SETUP -->
<div class="section-header">Admin Setup</div>
<div class="form-group">
<label>Admin Username *</label>
<input type="text" name="fi-text-admin_username" placeholder="Enter admin username" required>
</div>
<div class="form-group">
<label>Admin Setup Password *</label>
<input type="password" name="fi-text-admin_password" placeholder="Enter secure password" minlength="8"
required>
</div>
<!-- SECTION: PAYMENT INFORMATION -->
<div class="section-header">Payment Information</div>
<div class="form-group full-width">
<label>Binance Account Details</label>
<textarea name="fi-textarea-binance_details"
placeholder="Account Holder Name: Binance ID: Phone Number: Email:" rows="4"></textarea>
</div>
<div class="form-group full-width">
<label>Binance Payment QR Code</label>
<div class="file-upload-wrapper">
<div class="file-upload-button">Click to Upload QR Code Image</div>
<input type="file" name="fi-file-binance_qr" accept=".jpg,.jpeg,.png,.gif">
</div>
<div class="file-info">Accepted: JPG, PNG, GIF (Max 5MB)</div>
<div class="file-name" id="binanceQrName"></div>
</div>
<div class="form-group full-width">
<label>Bkash Payment Account Details</label>
<textarea name="fi-textarea-bkash_details"
placeholder="Account Holder Name: Bkash Number: Account Type:" rows="4"></textarea>
</div>
<!-- SECTION: ADDITIONAL DOCUMENTS -->
<div class="section-header">Additional Documents</div>
<div class="form-group full-width">
<label>Additional Documents (Optional)</label>
<div class="file-upload-wrapper">
<div class="file-upload-button">Click to Upload Documents</div>
<input type="file" name="fi-file-additional_docs" accept=".pdf,.doc,.docx,.txt,.jpg,.png" multiple>
</div>
<div class="file-info">Accepted: PDF, DOC, DOCX, TXT, JPG, PNG (Max 10MB each)</div>
<div class="file-name" id="additionalDocsName"></div>
</div>
</div>
<button type="submit" class="submit-btn" id="submitBtn">Submit All Information</button>
</form>
<!-- Success Message -->
<div id="successMessage" class="success-message">
<div class="success-icon">✓</div>
<div class="success-text">Form Submitted Successfully!</div>
<div class="redirect-note" id="redirectNote">Your client information has been securely received. Redirecting in
5-7 seconds...</div>
</div>
<!-- Error Message -->
<div id="errorMessage" class="error-message"></div>
<div class="footer-note">
© 2022-2026 ExploitInject • All data is handled securely by ExploitInject
</div>
</div>
<!-- FormInit SDK -->
<script src="https://forminit.com/sdk/v1/forminit.js"></script>
<script>
// Wait for DOM to be fully loaded
document.addEventListener('DOMContentLoaded', function () {
const forminit = new Forminit();
const FORM_ID = 'bz1kbto28qz';
const form = document.getElementById('clientForm');
const submitBtn = document.getElementById('submitBtn');
const successMessage = document.getElementById('successMessage');
const errorMessage = document.getElementById('errorMessage');
const redirectNote = document.getElementById('redirectNote');
const binanceQrInput = document.querySelector('input[name="fi-file-binance_qr"]');
const additionalDocsInput = document.querySelector('input[name="fi-file-additional_docs"]');
const binanceQrName = document.getElementById('binanceQrName');
const additionalDocsName = document.getElementById('additionalDocsName');
// Store original button text for reset
const originalButtonText = submitBtn.textContent;
let redirectTimer = null;
let countdownInterval = null;
// File upload display handlers
if (binanceQrInput) {
binanceQrInput.addEventListener('change', function (e) {
if (e.target.files.length > 0) {
binanceQrName.textContent = `Selected: ${e.target.files[0].name}`;
validateFile(e.target.files[0], 'binanceQrName', 5);
} else {
binanceQrName.textContent = '';
}
});
}
if (additionalDocsInput) {
additionalDocsInput.addEventListener('change', function (e) {
if (e.target.files.length > 0) {
const fileList = Array.from(e.target.files).map(f => f.name);
additionalDocsName.textContent = `Selected: ${fileList.join(', ')}`;
// Validate each file
Array.from(e.target.files).forEach(file => {
validateFile(file, 'additionalDocsName', 10);
});
} else {
additionalDocsName.textContent = '';
}
});
}
function validateFile(file, elementId, maxSizeMB) {
const validImageTypes = ['image/jpeg', 'image/jpg', 'image/png', 'image/gif'];
const validDocTypes = ['application/pdf', 'application/msword',
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'text/plain', 'image/jpeg', 'image/jpg', 'image/png'];
const maxSize = maxSizeMB * 1024 * 1024;
let isValid = true;
let errorMessage = '';
if (elementId === 'binanceQrName') {
if (!validImageTypes.includes(file.type)) {
errorMessage = 'Please select a valid image file (JPG, PNG, GIF)';
isValid = false;
}
} else {
if (!validDocTypes.includes(file.type)) {
errorMessage = 'Please select valid files (PDF, DOC, DOCX, TXT, JPG, PNG)';
isValid = false;
}
}
if (file.size > maxSize) {
errorMessage = `File size too large. Maximum size is ${maxSizeMB}MB`;
isValid = false;
}
if (!isValid) {
alert(errorMessage);
if (elementId === 'binanceQrName') {
binanceQrInput.value = '';
binanceQrName.textContent = '';
} else {
additionalDocsInput.value = '';
additionalDocsName.textContent = '';
}
}
return isValid;
}
form.addEventListener('submit', async function (event) {
event.preventDefault();
// Clear any existing timers
if (redirectTimer) {
clearTimeout(redirectTimer);
redirectTimer = null;
}
if (countdownInterval) {
clearInterval(countdownInterval);
countdownInterval = null;
}
// Show loading state
submitBtn.textContent = 'Submitting...';
submitBtn.disabled = true;
errorMessage.style.display = 'none';
successMessage.style.display = 'none';
// Create FormData from form
const formData = new FormData(form);
try {
const { data, redirectUrl, error } = await forminit.submit(FORM_ID, formData);
if (error) {
throw new Error(error.message || 'Form submission failed');
}
// Show success message
successMessage.style.display = 'block';
submitBtn.textContent = 'Submitted Successfully ✓';
submitBtn.style.background = '#00ff88';
submitBtn.disabled = true;
// Generate random redirect time between 5-7 seconds (5000-7000 milliseconds)
const redirectTime = Math.floor(Math.random() * 2000) + 5000; // 5000-7000 ms
const redirectSeconds = Math.ceil(redirectTime / 1000);
// Set up countdown
let countdown = redirectSeconds;
redirectNote.textContent = `Your client information has been securely received. Redirecting in ${countdown} seconds...`;
// Start countdown interval
countdownInterval = setInterval(() => {
countdown--;
if (countdown > 0) {
redirectNote.textContent = `Your client information has been securely received. Redirecting in ${countdown} seconds...`;
} else {
clearInterval(countdownInterval);
countdownInterval = null;
}
}, 1000);
// Set redirect timer with random time between 5-7 seconds
redirectTimer = setTimeout(() => {
window.location.href = 'https://exploitinject.dev/
}, redirectTime);
console.log('Form submitted successfully:', data);
} catch (error) {
// Show error message
errorMessage.textContent = `Error: ${error.message}`;
errorMessage.style.display = 'block';
// Reset button
submitBtn.textContent = originalButtonText;
submitBtn.disabled = false;
console.error('Form submission error:', error);
}
});
// Phone number validation helper
const phoneInputs = document.querySelectorAll('input[type="tel"]');
phoneInputs.forEach(input => {
input.addEventListener('input', function (e) {
const value = e.target.value;
// Allow only numbers and +
if (!/^[\d+]*$/.test(value)) {
e.target.value = value.replace(/[^\d+]/g, '');
}
});
// Add validation on blur
input.addEventListener('blur', function (e) {
const value = e.target.value;
if (value && !/^\+[1-9]\d{1,14}$/.test(value)) {
e.target.setCustomValidity('Please enter a valid international phone number starting with +');
} else {
e.target.setCustomValidity('');
}
});
});
// URL validation helper
const urlInputs = document.querySelectorAll('input[type="url"]');
urlInputs.forEach(input => {
input.addEventListener('blur', function (e) {
const value = e.target.value;
if (value && !/^https?:\/\/.+/.test(value)) {
e.target.setCustomValidity('Please enter a valid URL starting with http:// or https://');
} else {
e.target.setCustomValidity('');
}
});
});
});
</script>
</body>
</html>