-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreject.html
91 lines (78 loc) · 4.14 KB
/
reject.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<style>
</style>
</head>
<body>
<div class="container-fluid bg-primary float-end">
<p class="text-center float-start text-center text-light" style="font-size: 50px;">Reject</p>
<i class="icon bi bi-cloud-plus-fill text-light float-end p-3" style="font-size: 40px;"></i>
<i class="icon bi bi-person-plus-fill text-light float-end p-3" style="font-size:40px;"> </i>
</div>
<div class="container">
<div class="row">
<div class="col p-3"><input type="search"placeholder="Search" style="border-radius: 5px;">
<div class="btn btn-dark btn-sm text-light">submit</div>
</div>
<div class="col p-3 " style="border: 2px ;border-radius: 10px;" >
<a class="bi bi-clock-fill text-warning p-3" style="font-size: 40px;" href="pend.html"></a>
<a class="bi bi-check-circle text-success p-2" style="font-size: 40px;" href="deli.html"></a>
<a class="bi bi-x-circle-fill text-danger p-3" style="font-size: 40px;" href="reject.html"></a>
</div>
</div>
</div>
<div class="container-fluid">
<div class="table-responsive">
<table class="table table-striped table-danger table-hover table-bordered ">
<thead>
<tr>
<th>id</th>
<th>order id</th>
<th>product</th>
<th>price</th>
<th>Order date</th>
<th>Status</th>
<th>phone number</th>
</tr>
</thead>
<tbody>
<tr>
<td>#000</td>
<td>123</td>
<td>phone</td>
<td>$12</td>
<td>23/07/2021</td>
<td class="text-danger">Reject</td>
<td>9791430</td>
</tr>
<tr>
<td>#000</td>
<td>123</td>
<td>phone</td>
<td>$12</td>
<td>23/07/2021</td>
<td class="text-danger">Reject</td>
<td>9791430</td>
</tr>
<tr>
<td>#000</td>
<td>123</td>
<td>phone</td>
<td>$12</td>
<td>23/07/2021</td>
<td class="text-danger">Reject</td>
<td>9791430</td>
</tr>
</tbody>
</table>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
</body>
</html>