-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
73 lines (66 loc) · 1.99 KB
/
Copy pathindex.php
File metadata and controls
73 lines (66 loc) · 1.99 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>C</title>
</head>
<body>
<div style="text-align: center;">
<img class="logo" src='./favicon.png' alt='Logo'>
</div>
<div id='printContainer'>
<h2 id="slogan" style="margin-top:0" class="text-center">Cleaning Company</h2>
<table>
<tr>
<td>Invoice Num</td>
<td><b>#59867</b></td>
</tr>
<tr>
<td>Created At</td>
<td><b><?= date("d-m-Y H:i:s", time()); ?><br></b></td>
</tr>
<tr>
<td>Client Name</td>
<td><b>John Cena</b></td>
</tr>
</table>
<p class="text-center"><img src="./qr.png" alt="QR-code" class="left"/></p>
<hr>
<table>
<tr>
<td><b>Service Type</b></td>
<td><b>Price</b></td>
</tr>
<tr><td colspan="2"><hr></td></tr>
<tr>
<td><b>Clean Cars</b></td>
<td><b>15.7 USD</b></td>
</tr>
<tr>
<td> eco badge for waterless car washThe service at Detailing Knights is not only unmatched, it is also mobile, waterless and environmentally friendly. </td>
<td></td>
</tr>
</table>
<hr>
<table>
<tr>
<td><b>Service Fee</b></td>
<td><b>15.7 USD</b></td>
</tr>
<tr>
<td><b>Discount</b></td>
<td><b>1.7 USD</b></td>
</tr>
<tr>
<td><b>Net Value</b></td>
<td><b>14 USD</b></td>
</tr>
</table>
<hr>
</div>
<button onclick="window.print()" >Print</button>
</body>
</html>