-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpage2-1.html
96 lines (90 loc) · 3.92 KB
/
webpage2-1.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
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task</title>
<link rel="stylesheet" href="webpage2.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/javascript" src="new1.js"></script>
</head>
<body>
<div id="container">
<div class="invoice">
<h1>Invoice</h1>
</div>
<!-- <div class="card"> -->
<div class="page2_card_prepare">
<div class="search_bar">
<input type="text" placeholder="Ticket Search" name="search">
<button type="submit"><i class="fa fa-search"></i></button>
</div>
<div class="table">
<table id="table_details">
<tr id="header">
<th>S.No</th>
<th>Contact No</th>
<th>Customer Name</th>
<th>Contact Email</th>
<th>Invoice Number</th>
<th><i class="fa fa-filter" id="pf"></i> Payment for</th>
<th>Invoice Date</th>
<th>Grand Total</th>
<th><i class="fa fa-filter" id="af"></i> Action</th>
<th></th>
</tr>
<tr>
<td>1</td>
<td>8885298492</td>
<td>Rama Krishna</td>
<td>rknaidu@gmail.com</td>
<td>567891249348</td>
<td>A/C service</td>
<td>2020-04-12</td>
<td>3895/-</td>
<td>Completed</td>
<td><input type=button value="Print" onclick="p()" class="trigger"></td>
</tr>
<tr>
<td>2</td>
<td>7965289641</td>
<td>Sarfaraz</td>
<td>sarfarazsk213@gmail.com</td>
<td>598716473194</td>
<td>Pump service</td>
<td>2020-04-15</td>
<td>1220/-</td>
<td>Pending</td>
<td><input type=button value="Print" onclick="p()" class="trigger"></td>
</tr>
<tr>
<td>3</td>
<td>8642971156</td>
<td>Sandhya</td>
<td>sandhyarockz@gmail.com</td>
<td>793455644411</td>
<td>A/C service</td>
<td>2020-06-27</td>
<td>3950/-</td>
<td>Completed</td>
<td><input type=button value="Print" onclick="p()" class="trigger"></td>
</tr>
<tr>
<td>4</td>
<td>9964478315</td>
<td>Dracula chris</td>
<td>dchchris98@gmail.com</td>
<td>246955551367</td>
<td>A/C service</td>
<td>2020-05-06</td>
<td>4500/-</td>
<td>Completed</td>
<td><input type=button value="Print" onclick="p()" class="trigger"></td>
</tr>
</table>
</div>
</div>
</div>
<!-- </div> -->
</body>
</html>