forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
destinationform.html
148 lines (132 loc) · 5.76 KB
/
destinationform.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Destination Booking Form</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="destinationform.html">
main
<style>
/* circle styles */
.circle {
height: 24px;
width: 24px;
border-radius: 24px;
background-color: rgb(255, 0, 0);
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 99999999;
}
</style>
</head>
<link rel="icon" href="/icons/airplane.svg" />
</head>
main
<body>
<div class="container-fluid booking-form-container">
<div class="row justify-content-center align-items-center min-vh-100">
<div class="col-lg-6 col-md-8 col-sm-10">
<form id="bookingForm" class="booking-form p-4 rounded shadow-lg">
<h2 class="text-center mb-4">Book Your Dream Destination</h2>
<div class="mb-3">
<label for="destination" class="form-label">Destination</label>
<input type="text" class="form-control" id="destination" placeholder="Enter destination" aria-describedby="destinationFeedback" required>
<div id="destinationFeedback" class="invalid-feedback">Please select a valid destination.</div>
</div>
<div class="row mb-3">
<div class="col-md-6">
<label for="arrivalDate" class="form-label">Arrival Date</label>
<input type="date" class="form-control" id="arrivalDate" aria-describedby="arrivalDateFeedback" required>
<div id="arrivalDateFeedback" class="invalid-feedback">Please enter a valid arrival date.</div>
</div>
<div class="col-md-6">
<label for="departureDate" class="form-label">Departure Date</label>
<input type="date" class="form-control" id="departureDate" aria-describedby="departureDateFeedback" required>
<div id="departureDateFeedback" class="invalid-feedback">Please enter a valid departure date.</div>
</div>
</div>
<div class="mb-3">
<label for="guests" class="form-label">Number of Guests</label>
<select class="form-select" id="guests" aria-describedby="guestsFeedback" required>
<option value="" selected disabled>Select number of guests</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5+">5+</option>
</select>
<div id="guestsFeedback" class="invalid-feedback">Please indicate the number of guests.</div>
</div>
<div class="mb-3">
<label for="specialRequests" class="form-label">Special Requests</label>
<textarea class="form-control" id="specialRequests" rows="3" placeholder="Enter any special requests"></textarea>
</div>
<div class="d-grid">
<button type="submit" class="btn btn-primary btn-lg">Book Now 🏖️</button>
</div>
</form>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<!-- Circles -->
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<script>
// coordinates for the cursor :
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
const colors = [
"#fc5720", "#fc6532", "#fc6532","#fd8b65", "#d5585c", "#fac3b1", "#f4d5cb", "#fefefe", "#fefefe", "#cdf2c5", "#b2eca5", "#95e283", "#7dda68", "#4adc2d", "#69d451", "#54c939", "#34b916", "#28b309", "#1e9c02",
];
circles.forEach(function (circle, index) {
circle.x = 0;
circle.y = 0;
circle.style.backgroundColor = colors[index % colors.length];
});
// update the coordinates when the mouse moves:
window.addEventListener("mousemove", function (e) {
coords.x = e.clientX;
coords.y = e.clientY;
});
// animation function to move the circles:
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
circle.style.left = x - 12 + "px";
circle.style.top = y - 12 + "px";
circle.style.scale = (circles.length - index) / circles.length;
circle.x = x;
circle.y = y;
const nextCircle = circles[index + 1] || circles[0];
x += (nextCircle.x - x) * 0.3;
y += (nextCircle.y - y) * 0.3;
});
requestAnimationFrame(animateCircles);
}
animateCircles();
</script>
</body>
</html>