-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetail.html
104 lines (85 loc) · 5.17 KB
/
detail.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
<!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">
<title>Detail</title>
<link rel="stylesheet" href="styles/common.css">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/detail.css">
<link rel="stylesheet" href="styles/loader.css">
<script src="https://kit.fontawesome.com/35989243f5.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body id="body">
<section id="loader-div">
<div id="loader">
</div>
</section>
<div id="main">
<section id="content">
<section id="image-and-form">
<section id="hotel-image">
<div id="carouselExampleControls" class="carousel" data-ride="carousel">
<div class="carousel-inner">
<!-- inserting the images dynamically -->
</div>
<div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<i class="fa-solid fa-angle-left arrow"></i>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<i class="fa-solid fa-angle-right arrow"></i>
<span class="sr-only">Next</span>
</a>
</div>
</section>
<form action="payment.html" method="get" id="payment-form">
<section id="payment-details">
<section class="labels">
<label for="adults" class="label">Adults:</label>
<label for="name" class="label">Name:</label>
<label for="fromDate" class="label">From Date:</label>
<label for="toDate" class="label">To Date:</label>
<label for="total" class="label">Total:</label>
</section>
<section class="input-fields">
<input type="number" min="1" name="adults" id="adults" class="input-field" required>
<input type="text" name="name" id="name" class="input-field" required>
<input type="date" name="fromDate" id="fromDate" class="input-field" required >
<input type="date" name="toDate" id="toDate" class="input-field" required>
<input type="text" name="total" id="total" class="input-field" readonly value="Rs 0">
<input type="number" id="id" name="id" style="display: none;">
</section>
</section>
<button type="submit" class="btn btn-outline-success book-now">Book Now</button>
</form>
</section>
<section id="hotel-description">
<h2 id="hotel-name"></h2>
<h5 id="rating-text">Rating</h5>
<div id="rating">
<!-- rating stars here -->
</div>
<dl>
<dT><h5 id="amenities">AMENITIES</h5></dT>
<dd>
<ul id="amenities-list">
</ul>
</dd>
</dl>
<h5>DISCRIPTION</h5>
<p id="description"></p>
</section>
</section>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="scripts/common.js"></script>
<script src="scripts/detail.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>