forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.html
70 lines (54 loc) · 2.82 KB
/
feedback.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-pUA-Compatible" content="ie=edge" />
<title>Star Rating</title>
<link rel="icon"
href="img/A T logo with a white background and a square shape, connected to nature for a travel company.png"
type="image/x-icon" />
<link rel="stylesheet" href="style_.css">
<!-- FontAwsome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
</head>
<body>
<div class="container">
<div class="glassmorphism-container">
<h1 class="feedback-heading">RATE OUR SERVICE</h1>
<!-- <div class="stars" id="stars-container"> -->
<!-- Stars will be added dynamically using JavaScript -->
<!-- </div> -->
<p>How easy was it to navigate through the website?</p>
<div class="stars" id="navEase-stars-container"></div>
<p id="navEase-rating-text">Rating: 0</p>
<p>How much straightforward and easy was the booking process</p>
<div class="stars" id="bookingProcess-stars-container"></div>
<p id="bookingProcess-rating-text">Rating: 0</p>
<p>Did the payment options meet your needs? Were you comfortable with the security measures in place?</p>
<div class="stars" id="paymentOptions-stars-container"></div>
<p id="paymentOptions-rating-text">Rating: 0</p>
<p>How responsive and helpful was the customer support team?</p>
<div class="stars" id="customerSupport-stars-container"></div>
<p id="customerSupport-rating-text">Rating: 0</p>
<p>How much would you recommend this travel website to others?</p>
<div class="stars" id="recommendation-stars-container"></div>
<p id="recommendation-rating-text">Rating: 0</p>
<p>If you've taken a package tour from this website, how was the overall experience?</p>
<div class="stars" id="packageTour-stars-container"></div>
<p id="packageTour-rating-text">Rating: 0</p>
<!-- Feedback input box section -->
<div>
<label for="feedback-input" id="rating-text">Your feedback:</label>
<br><br>
<textarea id="feedback-input" placeholder="Remember to be nice please!"></textarea>
</div>
<button class="button" onclick="submitFeedback()">Submit</button>
</div>
<div><button class="button" onclick="location.href = 'index.html';">Return To Home Page</button></div>
</div>
</div>
<!-- SweetAlert2 -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script src="feedback.js" defer></script>
</body>
</html>