File size: 10,806 Bytes
a79063d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>
    <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>