-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDetails.html
119 lines (117 loc) · 5.85 KB
/
Details.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<title>Checkout Form</title>
</head>
<body class="max-w-6xl mx-auto">
<div class="container">
<div class="py-5 text-center">
<img class="mb-4 d-block mx-auto" src="images/logo.png" alt="Logo" height="100" width="200" >
<h2 class="text-3xl text-pink-600"> Check-Out Form </h2>
</div>
<div class="contact">
<div class="images-col">
<img src="images/locationlogo.jpg" alt="loclogo" height="20" width="20" class="float-left"><p>Via Trammacria 127</p>
<img src="images/telelogo.png" alt="telephone" height="20" width="25" class="float-left"><p>+12 35 46 88</p>
<img src="images/emaillogo.jpg" alt="email" height="30" width="25" class="float-left"><p>[email protected]</p>
<img src="images/websitelogo.jpg" alt="website" height="30" width="25" class="float-left"><p>wwww.GrandHotel.com</p>
</div>
<div class="grid grid-cols-1 divide-y-[3px] divide-blue-500 text-center py-1">
<div class="flex-grow border-t border-gray-400"></div>
<div class="flex-grow border-t border-gray-400"></div>
</div>
<p class="text-right text-3xl p-1.5 font-serif"><b>Booking</b></p>
<TABLE>
<TR class="border-collapse border border-slate-500 ...">
<caption><p class="text-lg font-mono text-orange-800 text-left ">Booking Details</p></caption>
<TD>Check in</TD>
<TD><b>Sunday 21, August 20121</b> </TD>
</TR>
<TR>
<TD>Check out</TD>
<TD><b>Sunday 29, August 20121</b></TD>
</TR>
<TR>
<TD>Guests</TD>
<TD>2 Adults, 1 Child</TD>
</TR>
<TR>
<TD>Unit</TD>
<TD>1 Double Bedroom</TD>
</TR>
</TABLE>
<br>
<TABLE>
<TR class="px-6 py-3">
<caption><p class="text-lg font-mono text-orange-800 text-left">Booked By</p></caption>
<TD>Adrdew Locian</TD>
<TD>Booking #</TD>
<TD>000018</TD>
</TR>
<TR>
<TD>[email protected]</TD>
<TD>Booking Date</TD>
<TD>15/08/21</TD>
</TR>
<TR>
<TD>+120035488</TD>
<TD>Status</TD>
<TD>Draft</TD>
</TR>
<TR>
</TABLE>
<br>
<div class="relative overflow-x-auto shadow-md sm:rounded-lg">
<table class="w-full text-sm text-left text-gray-500 dark:text-gray-400">
<thead class="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
<tr>
<th scope="col" class="px-6 py-3">
Description
</th>
<th scope="col" class="px-6 py-3">
Amount
</th>
</tr>
</thead>
<tbody>
<tr class="bg-white border-b dark:bg-gray-800 dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-600">
<th scope="row" class="px-6 py-4 font-medium text-gray-900 dark:text-white whitespace-nowrap">
7xNights($150.00)
</th>
<td class="px-6 py-4">
$1050.00
</td>
</tr>
<tr class="bg-white border-b dark:bg-gray-800 dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-600">
<th scope="row" class="px-6 py-4 font-medium text-gray-900 dark:text-white whitespace-nowrap">
7xBreakfast($45.00)
</th>
<td class="px-6 py-4">
$315.00
</td>
</tr>
<tr class="bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-600">
<th scope="row" class="px-6 py-4 font-medium text-gray-900 dark:text-white whitespace-nowrap">
1xAirport Transport($80.00)
</th>
<td class="px-6 py-4">
$80.00
</tr>
</tbody>
</table>
</div>
<br>
<p class="text-2xl"><b>Additional Information</b></p>
<p class="font-sans text-sm">Check in from 1 PM</p>
<p class="font-sans text-sm">Check out until 11 Am </p>
<br>
<button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
Confirm
</button>
</div>
</body>
</html>