-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrainbooking.html
More file actions
80 lines (77 loc) · 2.36 KB
/
trainbooking.html
File metadata and controls
80 lines (77 loc) · 2.36 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
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>M-TICKET DATABASE</title>
<style>
<link rel="stylesheet" href='index.css'>
<link rel="shortcut icon" href="logofig.jpg" />
table#database_table {
font-size: 16px;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
border-spacing: 0;
}
#database_table td, #database_table th {
border: 1px solid #ddd;
text-align: left;
padding: 8px;
}
#database_table tr:nth-child(even) {
background-color: #f2f2f2;
}
#database_table th {
padding-top: 11px;
padding-bottom: 11px;
background-color: black;
color: white;
}
</style>
</head>
<body>
<h2>
<center>
<b>
<img src="https://img.icons8.com/nolan/64/database.png"/> USER'S TRAIN BOOKINGS
<img src="https://img.icons8.com/ultraviolet/60/000000/train.png"/>
</b>
</center>
</h2>
<div class="container">
<br />
<table id="database_table" class="table table-striped table-bordered">
<thead>
<tr>
<th>Date & Time</th>
<th>Booking ID</th>
<th>Name</th>
<th>Source</th>
<th>Destination</th>
<th>Class</th>
<th>Type</th>
<th>Amount Paid</th>
<th>Download</th>
</tr>
</thead>
<tbody>
<!-- PHP loop removed -->
<tr>
<td>Sample Date</td>
<td>Sample Booking ID</td>
<td>Sample Name</td>
<td>Sample Source</td>
<td>Sample Destination</td>
<td>Sample Class</td>
<td>Sample Type</td>
<td>₹ Sample Amount</td>
<td>
<a href="print.php?pid=SampleBookingID" target="_blank">Click Here</a>
</td>
</tr>
</tbody>
</table>
</div>
<script>
// JavaScript code, if any, should be placed here
</script>
</body>
</html>