Spaces:
Running
Running
<html lang="ar" dir="rtl"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>تجربة محفظتي الموحدة</title> | |
<link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap" rel="stylesheet"> | |
<style> | |
body { | |
font-family: 'Tajawal', sans-serif; | |
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
margin: 0; | |
padding: 20px; | |
min-height: 100vh; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
} | |
.demo-container { | |
background: white; | |
border-radius: 20px; | |
padding: 40px; | |
box-shadow: 0 20px 40px rgba(0,0,0,0.1); | |
text-align: center; | |
max-width: 600px; | |
width: 100%; | |
} | |
.demo-header { | |
margin-bottom: 30px; | |
} | |
.demo-logo { | |
font-size: 4rem; | |
color: #4361ee; | |
margin-bottom: 20px; | |
} | |
.demo-title { | |
font-size: 2.5rem; | |
font-weight: 700; | |
color: #1f2937; | |
margin-bottom: 10px; | |
} | |
.demo-subtitle { | |
font-size: 1.2rem; | |
color: #6b7280; | |
margin-bottom: 30px; | |
} | |
.demo-features { | |
display: grid; | |
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); | |
gap: 20px; | |
margin-bottom: 40px; | |
} | |
.feature-card { | |
background: #f8fafc; | |
border-radius: 15px; | |
padding: 25px; | |
border: 1px solid #e5e7eb; | |
} | |
.feature-icon { | |
font-size: 2.5rem; | |
color: #4361ee; | |
margin-bottom: 15px; | |
} | |
.feature-title { | |
font-size: 1.3rem; | |
font-weight: 600; | |
color: #1f2937; | |
margin-bottom: 10px; | |
} | |
.feature-description { | |
color: #6b7280; | |
line-height: 1.6; | |
} | |
.demo-wallets { | |
margin-bottom: 40px; | |
} | |
.wallets-grid { | |
display: grid; | |
grid-template-columns: repeat(3, 1fr); | |
gap: 15px; | |
margin-top: 20px; | |
} | |
.wallet-item { | |
background: white; | |
border: 2px solid #e5e7eb; | |
border-radius: 12px; | |
padding: 15px; | |
transition: all 0.3s ease; | |
} | |
.wallet-item:hover { | |
border-color: #4361ee; | |
transform: translateY(-5px); | |
box-shadow: 0 10px 20px rgba(0,0,0,0.1); | |
} | |
.wallet-logo { | |
width: 50px; | |
height: 50px; | |
border-radius: 8px; | |
margin: 0 auto 10px; | |
overflow: hidden; | |
} | |
.wallet-logo img { | |
width: 100%; | |
height: 100%; | |
object-fit: cover; | |
} | |
.wallet-name { | |
font-weight: 600; | |
color: #1f2937; | |
font-size: 0.9rem; | |
} | |
.demo-actions { | |
display: flex; | |
gap: 20px; | |
justify-content: center; | |
flex-wrap: wrap; | |
} | |
.demo-btn { | |
background: #4361ee; | |
color: white; | |
border: none; | |
border-radius: 12px; | |
padding: 15px 30px; | |
font-size: 1.1rem; | |
font-weight: 600; | |
cursor: pointer; | |
transition: all 0.3s ease; | |
text-decoration: none; | |
display: inline-flex; | |
align-items: center; | |
gap: 10px; | |
} | |
.demo-btn:hover { | |
background: #3f37c9; | |
transform: translateY(-2px); | |
box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3); | |
} | |
.demo-btn.secondary { | |
background: #6b7280; | |
} | |
.demo-btn.secondary:hover { | |
background: #4b5563; | |
} | |
.demo-info { | |
background: #f0f9ff; | |
border: 1px solid #0ea5e9; | |
border-radius: 12px; | |
padding: 20px; | |
margin-top: 30px; | |
} | |
.demo-info-title { | |
color: #0369a1; | |
font-weight: 600; | |
margin-bottom: 10px; | |
} | |
.demo-info-text { | |
color: #0c4a6e; | |
line-height: 1.6; | |
} | |
.credentials { | |
background: #fef3c7; | |
border: 1px solid #f59e0b; | |
border-radius: 12px; | |
padding: 20px; | |
margin-top: 20px; | |
} | |
.credentials-title { | |
color: #92400e; | |
font-weight: 600; | |
margin-bottom: 10px; | |
} | |
.credentials-list { | |
color: #78350f; | |
text-align: right; | |
} | |
@media (max-width: 768px) { | |
.demo-container { | |
padding: 20px; | |
margin: 10px; | |
} | |
.demo-title { | |
font-size: 2rem; | |
} | |
.wallets-grid { | |
grid-template-columns: repeat(2, 1fr); | |
} | |
.demo-actions { | |
flex-direction: column; | |
align-items: center; | |
} | |
.demo-btn { | |
width: 100%; | |
max-width: 300px; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<div class="demo-container"> | |
<div class="demo-header"> | |
<div class="demo-logo">💳</div> | |
<h1 class="demo-title">محفظتي الموحدة</h1> | |
<p class="demo-subtitle">جميع محافظك الإلكترونية اليمنية في مكان واحد</p> | |
</div> | |
<div class="demo-features"> | |
<div class="feature-card"> | |
<div class="feature-icon">🔐</div> | |
<h3 class="feature-title">أمان متقدم</h3> | |
<p class="feature-description">نظام أمان متطور مع خيارات متعددة للتحقق (PIN، بصمة، OTP)</p> | |
</div> | |
<div class="feature-card"> | |
<div class="feature-icon">💸</div> | |
<h3 class="feature-title">تحويلات سريعة</h3> | |
<p class="feature-description">تحويل الأموال بين المحافظ المختلفة بسهولة وأمان</p> | |
</div> | |
<div class="feature-card"> | |
<div class="feature-icon">📱</div> | |
<h3 class="feature-title">واجهة موحدة</h3> | |
<p class="feature-description">إدارة جميع محافظك من تطبيق واحد بواجهة عصرية</p> | |
</div> | |
</div> | |
<div class="demo-wallets"> | |
<h3>المحافظ المدعومة</h3> | |
<div class="wallets-grid"> | |
<div class="wallet-item"> | |
<div class="wallet-logo"> | |
<img src="https://play-lh.googleusercontent.com/NuKV_Snecpx633RHzIWvFauG32WBAk-jt3lcZOajw2w7VD8Hdt8h5Lb0pYLopB_Qk4Y=w240-h480" alt="جوالي"> | |
</div> | |
<div class="wallet-name">جوالي</div> | |
</div> | |
<div class="wallet-item"> | |
<div class="wallet-logo"> | |
<img src="https://play-lh.googleusercontent.com/OF2xMRUmNH47BIaOTbv7GgvmLRTQbT1xHkFF_Ocswx6Jq5gfX4VlfAl_275UmjH2pg=w240-h480" alt="ONE Cash"> | |
</div> | |
<div class="wallet-name">ONE Cash</div> | |
</div> | |
<div class="wallet-item"> | |
<div class="wallet-logo"> | |
<img src="https://play-lh.googleusercontent.com/zkV8HeO6iF2xa77ObHdKfAXfrfjU5fgWB0XsWt7_DmG4VGSKob2jU_CrqWyKQtghQyE=w240-h480" alt="Cash"> | |
</div> | |
<div class="wallet-name">Cash</div> | |
</div> | |
<div class="wallet-item"> | |
<div class="wallet-logo"> | |
<img src="https://play-lh.googleusercontent.com/EAaXnjh1FVPYpI5qWZwWvZIV5oD1hm9auDX0owOgREBjMAzYKX9od1USWRzlXIhRvKMx=w240-h480" alt="Jaib"> | |
</div> | |
<div class="wallet-name">Jaib</div> | |
</div> | |
<div class="wallet-item"> | |
<div class="wallet-logo"> | |
<img src="https://play-lh.googleusercontent.com/mNvakjEk-3VX7icU5w4xmAhT4MQgGAGcQYpRvPkBLVTzD-sYnmzAH_wuglMujTsaqQ=w240-h480" alt="mFloos"> | |
</div> | |
<div class="wallet-name">mFloos</div> | |
</div> | |
<div class="wallet-item"> | |
<div class="wallet-logo"> | |
<img src="https://play-lh.googleusercontent.com/51r7PLMlK0gVvITgOoJ7BnGX-9Gq3_ayiSiHHxSDbJZPCgABXI_LnU6jNCHAefWHvSPV=w240-h480" alt="Mobile Money"> | |
</div> | |
<div class="wallet-name">Mobile Money</div> | |
</div> | |
</div> | |
</div> | |
<div class="demo-actions"> | |
<a href="index.html" class="demo-btn"> | |
🚀 تجربة التطبيق | |
</a> | |
<a href="الاخير.html" class="demo-btn secondary"> | |
📄 النظام الأصلي | |
</a> | |
</div> | |
<div class="credentials"> | |
<div class="credentials-title">بيانات التجربة:</div> | |
<div class="credentials-list"> | |
<div>رقم الهاتف: أي رقم يمني صحيح (9 أرقام)</div> | |
<div>رمز PIN: أي رمز من 4-6 أرقام</div> | |
<div>مثال: 777123456 / 1234</div> | |
</div> | |
</div> | |
<div class="demo-info"> | |
<div class="demo-info-title">ملاحظة مهمة:</div> | |
<div class="demo-info-text"> | |
هذا تطبيق تجريبي لأغراض العرض فقط. جميع البيانات والمعاملات محاكاة ولا تؤثر على الحسابات الحقيقية. | |
التطبيق يدعم المصادقة البيومترية في المتصفحات المتوافقة. | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> | |