-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorderview.php
141 lines (137 loc) · 4.93 KB
/
orderview.php
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
<?php
/**
* Created by IntelliJ IDEA.
* User: ACER
* Date: 6/26/2019
* Time: 3:59 PM
*/
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Item</title>
<link rel="stylesheet"href="css/bootstrap.css">
<link rel="stylesheet"href="js/bootstrap.js">
<link rel="stylesheet" href="css/myStyke.css"/>
<script src="js/bootstrap.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<style>
@import url('https://fonts.googleapis.com/css?family=Anton&display=swap');
#slide{
height: 670px;
width: 20%;
background-color: #23272b;
}
</style>
</head>
<body>
<div class="row">
<div class="col-md-12">
<div class="row" style="background-color: #17a2b8">
<div class="col-md-4" style="font-size: 40px;font-family: 'Anton', sans-serif;"><i class="fas fa-smile-beam"style="padding:15px"></i>POS System</div>
<div class="col-md-8"><a class="nav-link active text-dark font-weight-bold" href="index.php" style="left:-200px;position: absolute;top: 10px">Dashboard</a></div>
</div>
</div>
<div class="row" id="slide">
<div class="col-md-4">
<div class="row">
<div class="col-md-12">
<ul class="nav flex-column">
<li class="nav-item" id="nav1">
<a class="nav-link active" href="customer.php"><img src="images/Customer_48px.png" height="48" width="48"/>Customer</a>
</li>
<li class="nav-item" style="font-size: 35px">
<a class="nav-link" href="item.php"><img src="images/Ingredients_48px.png" height="48" width="48"/>Item</a>
</li>
<li class="nav-item" style="font-size: 35px">
<a class="nav-link" href="invoice.php"><img src="images/Purchase Order_48px.png" height="48" width="48"/>Order</a>
</li>
<li class="nav-item" style="font-size: 35px">
<a class="nav-link" href="orderview.php"><img src="images/Supplier_50px.png" height="50" width="50"/>Order View</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-md-8">
<div class="col-md-12">
<table class="table table-dark" style="top: 50px;position: absolute;left: 80px">
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Name</th>
<th scope="col">Item</th>
<th scope="col">Addreess</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>