-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorders.html
More file actions
58 lines (56 loc) · 2.46 KB
/
Copy pathorders.html
File metadata and controls
58 lines (56 loc) · 2.46 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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>الطلبات - لوحة التحكم</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="d-flex">
<!-- Sidebar -->
<nav id="sidebar" class="bg-dark text-white p-3" style="min-width: 250px; min-height: 100vh;">
<h4 class="mb-4"><i class="fa fa-tachometer-alt"></i> لوحة التحكم</h4>
<ul class="nav flex-column">
<li class="nav-item"><a href="index.html" class="nav-link"><i class="fa fa-home"></i> الرئيسية</a></li>
<li class="nav-item"><a href="customers.html" class="nav-link"><i class="fa fa-users"></i> العملاء</a></li>
<li class="nav-item"><a href="orders.html" class="nav-link active"><i class="fa fa-shopping-cart"></i> الطلبات</a></li>
<li class="nav-item"><a href="sales.html" class="nav-link"><i class="fa fa-chart-line"></i> المبيعات</a></li>
<li class="nav-item"><a href="settings.html" class="nav-link"><i class="fa fa-cog"></i> الإعدادات</a></li>
</ul>
</nav>
<!-- المحتوى -->
<div class="container-fluid p-4">
<h1 class="mb-4">صفحة الطلبات</h1>
<p>هنا يمكنك إدارة الطلبات.</p>
<table class="table table-striped text-center">
<thead class="table-primary">
<tr>
<th>رقم الطلب</th>
<th>العميل</th>
<th>المبلغ</th>
<th>الحالة</th>
</tr>
</thead>
<tbody>
<tr>
<td>#1001</td>
<td>أحمد محمد</td>
<td>$120</td>
<td><span class="badge bg-success">مكتمل</span></td>
</tr>
<tr>
<td>#1002</td>
<td>سارة علي</td>
<td>$80</td>
<td><span class="badge bg-warning">قيد التنفيذ</span></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>