forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.html
154 lines (133 loc) · 6.1 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
152
153
154
<!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>
<script
src="https://kit.fontawesome.com/b08b6de27e.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</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>
</div>
<div class="row mb-3">
<div class="col-md-6">
<div class="icon"><i class="fas fa-map-marked-alt"></i></div>
<input type="text" name="event_name" placeholder="Name the tour you attended:" id="event_name" class="form-control" required="required" />
</div>
<div class="col-md-6">
<div class="icon"><i class="fas fa-calendar-alt"></i></div>
<input type="date" class="form-control" placeholder="Tour Date:" name="event_date" id="event_date" />
</div>
</div>
<div class="row mb-3">
<div class="col-md-6">
<div class="icon">
<i class="fas fa-user"></i>
</div>
<input type="text" name="FullName" id="FullName" placeholder="Your Name" required="required" class="form-control" />
</div><br>
<div class="col-md-6">
<div class="icon">
<i class="fas fa-envelope"></i>
</div>
<input type="email" class="form-control" placeholder="Email Id" name="Email" id="Email" />
</div>
</div>
<h3>What's your opinion about:</h3>
<div class="group">
<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>
</div>
<h3>How would you rate the following aspects?</h3>
<div class="group">
<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>
<div class="row mb-3">
<div class="col-md-12">
<textarea name="suggestions" itemid="text" class="form-control" placeholder="Your suggestions for improving future events" id="suggestions" rows="6"></textarea>
</div>
</div>
<div class="row mb-3">
<div class="col-md-6 d-flex align-items-center">
<div class="last">
<label for="notify_future_events" class="form-check-label">Would you like to be notified about future events?</label>
<input type="checkbox" class="form-check-input" name="notify_future_events" id="notify_future_events" />
</div>
</div>
</div>
<div class="row mb-3">
<div class="col-md-6 d-flex align-items-center">
<div class="last">
<label for="can_follow_up" class="form-check-label">Can we contact you regarding your feedback for further clarification or follow-up?</label>
<input type="checkbox" class="form-check-input" name="can_follow_up" id="can_follow_up" />
</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>