-
Notifications
You must be signed in to change notification settings - Fork 1
/
feedback.html
90 lines (70 loc) · 4.73 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
<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>FEEDBACK PAGE</title>
<link rel="icon"
href="Eduversity\assets\images\logo.png"
type="image/x-icon" />
<link rel="stylesheet" href="feedback.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 hover-speak" onmouseover="speakText('HOW WAS YOUR EXPERIENCE')" onmouseleave="stopSpeaking()">HOW WAS YOUR EXPERIENCE?</h1>
<!-- <div class="stars" id="stars-container"> -->
<!-- Stars will be added dynamically using JavaScript -->
<!-- </div> -->
<p class="hover-speak" onmouseover="speakText('How easy was it to navigate through the website')" onmouseleave="stopSpeaking()">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 class="hover-speak" onmouseover="speakText('How much straightforward and easy was the QUIZ process')" onmouseleave="stopSpeaking()">How much straightforward and easy was the QUIZ process?</p>
<div class="stars" id="bookingProcess-stars-container"></div>
<p id="bookingProcess-rating-text">Rating: 0</p>
<p class="hover-speak" onmouseover="speakText('How much you will recommend Our courses to your Community')" onmouseleave="stopSpeaking()">How much you will recommend Our courses to your Community?</p>
<div class="stars" id="paymentOptions-stars-container"></div>
<p id="paymentOptions-rating-text">Rating: 0</p>
<p class="hover-speak" onmouseover="speakText('How responsive and helpful was the customer support team?')" onmouseleave="stopSpeaking()">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 class="hover-speak" onmouseover="speakText('How much would you recommend this Eduversity Web App to others')" onmouseleave="stopSpeaking()">How much would you recommend this Eduversity Web App to others?</p>
<div class="stars" id="recommendation-stars-container"></div>
<p id="recommendation-rating-text">Rating: 0</p>
<p class="hover-speak" onmouseover="speakText('If you have bought a Course from this website, how was the overall experience')" onmouseleave="stopSpeaking()">If you've bought a Course 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" class="hover-speak" onmouseover="speakText('Your feedback')" onmouseleave="stopSpeaking()">Your feedback:</label>
<br><br>
<textarea id="feedback-input" placeholder="Please Write Your honest review!" method="post"></textarea>
</div>
<button id="myButton" class="button hover-speak" onclick="submitFeedback()" onmouseover="speakText('Submit Your feedback')" onmouseleave="stopSpeaking()">Submit</button>
</div>
<div><button class="button hover-speak" onclick="location.href = 'Eduversity/index.html';" onmouseover="speakText('Return To Home Page')" onmouseleave="stopSpeaking()">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>
<script src="//cdnjs.cloudflare.com/ajax/libs/annyang/2.6.0/annyang.min.js"></script>
<!-- Accessibility Mode Button -->
<div class="accessibility-button hover-speak" onclick="toggleAccessibilityMenu()"
onmouseover="speakText('click here to select accessibility mode')" onmouseleave="stopSpeaking()">
<div class="accessibility-icon">
</div>
</div>
<!-- Accessibility Menu -->
<div class="accessibility-menu" id="accessibilityMenu">
<ul>
<li><button class="hover-speak" onclick="toggleScreenReader()" id="screenReaderButton"
onmouseover="speakText('click here to change the screen reader mode')" onmouseleave="stopSpeaking()">Enable
Screen Reader</button></li>
<li><button onclick="toggleVoiceRecognition()" id="voiceRecognitionButton">Enable Voice Recognition</button></li>
</ul>
</div>
</body>
</html>