Skip to content
عين حورسعين حورس
  • الرئيسية
  • كورسات
  • جلسات
  • المتجر
  • عين حورس
    • فيديوهات
    • ريتريت
    • تواصل معنا
    • سياسة الخصوصية
    • سياسة الاسترجاع
    • سياسة الشحن
    • الشروط والأحكام
  • استعلام عن شهادة
  • لوحه التحكم
عين حورسعين حورس
  • الرئيسية
  • كورسات
  • جلسات
  • المتجر
  • عين حورس
    • فيديوهات
    • ريتريت
    • تواصل معنا
    • سياسة الخصوصية
    • سياسة الاسترجاع
    • سياسة الشحن
    • الشروط والأحكام
  • استعلام عن شهادة
  • لوحه التحكم

استعلام عن شهادة

  • Home
  • الاستعلام عن الشهادات
  • استعلام عن شهادة
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
استعلم عن شهادة | عين حورس
الاستعلام عن الشهادات
مرحبًا بك في نظام الاستعلام عن الشهادات الخاص بعين حورس.
يمكنك التحقق من صحة شهادتك بسهولة وسرعة باستخدام النموذج أدناه:
  • أدخل رقم الشهادة في الحقل المخصص.
  • اضغط على زر تحقق لعرض تفاصيل الشهادة.
  • راجع البيانات المعروضة وطابقها مع سجلاتك.
  • عرض تفاصيل الشهادة، بما في ذلك اسم المتدرب، اسم الدورة، وتاريخ الإصدار
.cert-search-box { max-width: 700px; margin: 30px auto; padding: 35px; background: #ffffff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); } .cert-search-box h3 { text-align: center; color: #2c3e50; margin-bottom: 10px; font-size: 28px; } .cert-search-subtitle { text-align: center; color: #7f8c8d; margin-bottom: 30px; font-size: 15px; } .cert-search-form { display: flex; gap: 12px; margin-bottom: 25px; } .cert-search-form input { flex: 1; padding: 14px 18px; font-size: 16px; border: 2px solid #e0e0e0; border-radius: 8px; text-transform: uppercase; transition: all 0.3s; } .cert-search-form input:focus { border-color: #3498db; outline: none; box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1); } .cert-search-form button { padding: 14px 35px; background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); color: white; border: none; border-radius: 8px; font-size: 16px; cursor: pointer; font-weight: 600; transition: all 0.3s; } .cert-search-form button:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3); } .cert-result { background: #f8f9fa; padding: 25px; border-radius: 10px; border: 2px solid #e9ecef; margin-top: 25px; } .cert-result h4 { color: #27ae60; margin-bottom: 20px; font-size: 22px; display: flex; align-items: center; gap: 10px; } .cert-detail { padding: 14px 0; border-bottom: 1px solid #dee2e6; display: flex; align-items: start; } .cert-detail:last-child { border-bottom: none; } .cert-label { font-weight: 600; color: #495057; min-width: 140px; display: flex; align-items: center; gap: 8px; } .cert-value { color: #212529; flex: 1; } .cert-phone { direction: ltr; text-align: left; font-family: monospace; font-size: 16px; color: #2980b9; font-weight: 600; } .cert-error { background: #fff3cd; color: #856404; padding: 20px; border-radius: 8px; border: 2px solid #ffc107; text-align: center; margin-top: 20px; } .cert-loading { text-align: center; padding: 30px; color: #6c757d; } .spinner { border: 3px solid #f3f3f3; border-top: 3px solid #3498db; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 0 auto 15px; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

🎓 التحقق من الشهادة

أدخل كود الشهادة للتحقق من صحتها وعرض التفاصيل

jQuery(document).ready(function($) { function searchCert() { var code = $('#cert-code-input').val().trim().toUpperCase(); if(code.length < 3) { $('#cert-results').html('
⚠️ الرجاء إدخال كود صحيح (3 أحرف على الأقل)
'); return; } $('#cert-results').html('

جاري البحث عن الشهادة...

'); $.ajax({ url: 'https://horusegy.com/wp-admin/admin-ajax.php', method: 'POST', data: { action: 'search_certificate', certificate_code: code }, success: function(response) { if(response.success) { var cert = response.data; var html = '
'; html += '

✅ تم العثور على الشهادة

'; html += '
📝 كود الشهادة: ' + cert.code + '
'; html += '
👤 اسم الطالب: ' + cert.student_name + '
'; html += '
📱 رقم الهاتف: ' + cert.student_phone + '
'; html += '
📚 اسم الدورة: ' + cert.course_name + '
'; html += '
📅 تاريخ الإصدار: ' + cert.issue_date + '
'; html += '
⭐ التقدير: ' + cert.grade + '
'; html += '
'; $('#cert-results').html(html); } else { $('#cert-results').html('
❌ ' + response.data + '
'); } }, error: function() { $('#cert-results').html('
❌ حدث خطأ في الاتصال. حاول مرة أخرى
'); } }); } $('#cert-search-btn').on('click', searchCert); $('#cert-code-input').on('keypress', function(e) { if(e.which === 13) { searchCert(); } }); });
لماذا شهادات عين حورس؟
لماذا شهادات عين حورس؟
  • شهادات معتمدة لدعم رحلتك في علوم الوعي والتنمية الذاتية.
  • توثيق رسمي لمسارك التدريبي.
  • إمكانية الطباعة أو المشاركة الرقمية.
  • نظام تحقق سريع وآمن لحماية البيانات والشهادات.
زر اتصل بنا
لديك استفسار؟

إذا واجهت أي مشكلة أثناء الاستعلام عن الشهادة أو كنت بحاجة إلى مساعدة، يمكنك التواصل مع فريق الدعم لدينا عبر وسائل التواصل المتاحة.

اتصل بنا الان
footer-logo

نبذة عنا

في عالم مليء بالتحديات والتغيرات السريعة، يصبح الوعي الفائق هو المفتاح الحقيقي لتحقيق النجاح والراحة النفسية من خلال فهم ذاتك، التحكم في طاقتك، وتحقيق التوازن العميق في حياتك.

هاتف : 01004477017
إيميل : info@horusegy.com

روابط مفيدة

  • عين حورس

النشرة الإخبارية

أدخل عنوان بريدك الإلكتروني ليصلك جديد الأخبار والدورات من عين حورس

Icon-facebook Icon-linkedin2 Icon-instagram X-twitter Icon-youtube
Copyright 2025 عين حورس All Rights Reserved
عين حورسعين حورس
Sign inSign up

Sign in

Don’t have an account? Sign up
Lost your password?

Sign up

Already have an account? Sign in