forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.html
114 lines (92 loc) · 4.56 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
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
<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">
<!-- <link rel="stylesheet" href="styles.css"> -->
<!-- FontAwsome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<style>
html {
scroll-behavior: smooth;
}
</style>
<style>
.active {
color: red !important;
}
</style>
</head>
<body>
<div class="container">
<div class="nav-container">
<nav class="newNav">
<a href="#" class="nav__logo" data-aos="fade-right">Tourguide<span>.</span></a>
<ul class="navLinks">
<li class="link home" data-aos="fade-down"><a href="index.html#Home">Home</a></li>
<li class="link" data-aos="fade-down"><a href="index.html">AboutUs</a></li>
<li class="link" data-aos="fade-down"><a href="index.html">Destinations</a></li>
<li class="link" data-aos="fade-down"><a href="index.html">Pricing</a></li>
<li class="link" data-aos="fade-down"><a href="index.html">Trip Gallery</a></li>
<li class="link" data-aos="fade-down"><a href="index.html">Testimonials</a></li>
<li class="link" data-aos="fade-down"><a href="feedback.html">Rate Us?</a></li>
<li class="link" data-aos="fade-down"><a href="index.html">Contact Us</a></li>
</ul>
<a href="newLogin.html" class="contact-btn"><button class="btn" id="btn-style" style="margin: 0;"
data-aos="fade-down">Login</button></a>
<div class="toggle-container" data-aos="fade-down">
<input id="themeToggle" class="toggle" type="checkbox">
</div>
<div class="hamburger" data-aos="fade-down">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
</div>
<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>