-
Notifications
You must be signed in to change notification settings - Fork 0
/
pages-invoice.php
167 lines (166 loc) · 9.44 KB
/
pages-invoice.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
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
<?php
require_once("header.php");
?>
<!-- Page Content -->
<div id="content-page" class="content-page">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<div class="iq-card">
<div class="iq-card-body">
<div class="row">
<div class="col-lg-6">
<img src="../assets/images/logo.png" class="img-fluid" alt="">
</div>
<div class="col-lg-6 align-self-center">
<h4 class="mb-0 float-right">Invoice</h4>
</div>
<div class="col-sm-12">
<hr class="mt-3">
<h5 class="mb-0">Hello, Barry Techs</h5>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.</p>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="table-responsive-sm">
<table class="table">
<thead>
<tr>
<th scope="col">Order Date</th>
<th scope="col">Order Status</th>
<th scope="col">Order ID</th>
<th scope="col">Billing Address</th>
<th scope="col">Shipping Address</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jan 17, 2016</td>
<td><span class="badge badge-danger">Unpaid</span></td>
<td>250028</td>
<td>
<p class="mb-0">PO Box 16122 Collins Street West<br>Victoria 8007 Australia<br>
Phone: +123 456 7890<br>
Email: demo@Streamit .com<br>
Web: www.Streamit .com
</p>
</td>
<td>
<p class="mb-0">PO Box 16122 Collins Street West<br>Victoria 8007 Australia<br>
Phone: +123 456 7890<br>
Email: demo@Streamit .com<br>
Web: www.Streamit .com
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<h5>Order Summary</h5>
<div class="table-responsive-sm">
<table class="table table-striped">
<thead>
<tr>
<th class="text-center" scope="col">#</th>
<th scope="col">Item</th>
<th class="text-center" scope="col">Quantity</th>
<th class="text-center" scope="col">Price</th>
<th class="text-center" scope="col">Totals</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" scope="row">1</th>
<td>
<h6 class="mb-0">Web Design</h6>
<p class="mb-0">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</td>
<td class="text-center">5</td>
<td class="text-center">$120.00</td>
<td class="text-center"><b>$2,880.00</b></td>
</tr>
<tr>
<th class="text-center" scope="row">2</th>
<td>
<h6 class="mb-0">Web Design</h6>
<p class="mb-0">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</td>
<td class="text-center">5</td>
<td class="text-center">$120.00</td>
<td class="text-center"><b>$2,880.00</b></td>
</tr>
<tr>
<th class="text-center" scope="row">3</th>
<td>
<h6 class="mb-0">Web Design</h6>
<p class="mb-0">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</td>
<td class="text-center">5</td>
<td class="text-center">$120.00</td>
<td class="text-center"><b>$2,880.00</b></td>
</tr>
<tr>
<th class="text-center" scope="row">4</th>
<td>
<h6 class="mb-0">Web Design</h6>
<p class="mb-0">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</td>
<td class="text-center">5</td>
<td class="text-center">$120.00</td>
<td class="text-center"><b>$2,880.00</b></td>
</tr>
</tbody>
</table>
</div>
<h5 class="mt-5">Order Details</h5>
<div class="table-responsive-sm">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Bank</th>
<th scope="col">.Acc.No</th>
<th scope="col">Due Date</th>
<th scope="col">Sub-total</th>
<th scope="col">Discount</th>
<th scope="col">Total</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Threadneedle St</th>
<td>12333456789</td>
<td>12 November 2019</td>
<td>$4597.50</td>
<td>10%</td>
<td><b>$4137.75 USD</b></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-sm-6"></div>
<div class="col-sm-6 text-right">
<button type="button" class="btn text-primary btn-link mr-3"><i class="ri-printer-line"></i> Download Print</button>
<button type="button" class="btn btn-primary">Submit</button>
</div>
<div class="col-sm-12 mt-5">
<b class="text-danger">Notes:</b>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Wrapper END -->
<?php
require_once("footer.php");
?>