forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.html
151 lines (130 loc) · 6.2 KB
/
feed.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
149
150
151
<!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>Tour Feedback Form</title>
<link rel="stylesheet" href="feed.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script src="feed.js" defer></script>
</head>
<body>
<div class="container">
<form method="post" id="myform">
<div class="row mb-3">
<div class="col-md-12">
<h2>Tour Feedback Form</h2>
<div class="fs-6 fw-light" style="color: #eae54c;">We value your feedback and use it to improve our tours. Please fill out this form to share your experience.</div>
</div>
</div>
<div class="row mb-3">
<div class="col-md-6">
<label for="event_name" class="form-label">Name the tour you attended:</label>
<input type="text" name="event_name" id="event_name" class="form-control" required="required" />
</div><br>
<div class="col-md-6">
<label for="event_date" class="form-label">Tour Date:</label>
<input type="date" class="form-control" name="event_date" id="event_date" />
</div>
</div>
<div class="row mb-3">
<div class="col-md-6">
<label for="FullName" class="form-label">Name</label>
<input type="text" name="FullName" id="FullName" placeholder="Your Name" required="required" class="form-control" />
</div><br>
<div class="col-md-6">
<label for="Email" class="form-label">Email:</label>
<input type="email" class="form-control" name="Email" id="Email" />
</div>
</div>
<h3>What's your opinion about:</h3>
<div class="row mb-3">
<div class="col-md-12">
<label>Ease of navigation?</label>
<div class="d-flex flex-wrap" id="navigationEase">
</div>
<p id="navigationEase-rating-text">Rating: 0</p>
</div>
</div>
<div class="row mb-3">
<div class="col-md-12">
<label>Booking process</label>
<div class="d-flex flex-wrap" id="bookingProcess">
</div>
<p id="bookingProcess-rating-text">Rating: 0</p>
</div>
</div>
<div class="row mb-3">
<div class="col-md-12">
<label>Accuracy of information provided</label>
<div class="d-flex flex-wrap" id="accuracyInformation">
</div>
<p id="accuracyInformation-rating-text">Rating: 0</p>
</div>
</div>
<h3>How would you rate the following aspects?</h3>
<div class="row mb-3">
<div class="col-md-12">
<label>Payment options</label>
<div class="d-flex flex-wrap" id="paymentOptions">
</div>
<p id="paymentOptions-rating-text">Rating: 0</p>
</div>
</div>
<div class="row mb-3">
<div class="col-md-12">
<label>Security Measures</label>
<div class="d-flex flex-wrap" id="securityMeasures">
</div>
<p id="securityMeasures-rating-text">Rating: 0</p>
</div>
</div>
<div class="row mb-3">
<div class="col-md-12">
<label>Customer Support</label>
<div class="d-flex flex-wrap" id="customerSupport">
</div>
<p id="customerSupport-rating-text">Rating: 0</p>
</div>
</div>
<div class="row mb-3">
<div class="col-md-12">
<label>How would you rate the overall experience?</label>
<div class="d-flex flex-wrap" id="overallExperience">
</div>
<p id="overallExperience-rating-text">Rating: 0</p>
</div>
</div>
<div class="row mb-3">
<div class="col-md-12">
<label for="suggestions" class="form-label">Your suggestions for improving future events</label>
<textarea name="suggestions" class="form-control" id="suggestions" rows="6"></textarea>
</div>
</div>
<div class="row mb-3">
<div class="col-md-6 d-flex align-items-center">
<div>
<input type="checkbox" class="form-check-input" name="notify_future_events" id="notify_future_events" />
<label for="notify_future_events" class="form-check-label">Would you like to be notified about future events?</label>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col-md-6 d-flex align-items-center">
<div>
<input type="checkbox" class="form-check-input" name="can_follow_up" id="can_follow_up" />
<label for="can_follow_up" class="form-check-label">Can we contact you regarding your feedback for further clarification or follow-up?</label>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col-md-6 d-flex align-items-center">
<button type="button" class="btn btn-lg px-4" style="background-color:#007bff;border-color:#007bff;color:white;" onclick="submitFeedback()">Submit</button>
</div>
</div>
</form>
</div>
</body>
</html>