forked from alwaysPasindu/Life_Below_Water_Website_UNSDG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeedback.html
140 lines (92 loc) Β· 4.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback</title>
<link rel="stylesheet" href="Home.css">
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<link rel="stylesheet" href="Feedback.css">
</head>
<body>
<header class="header">
<a href="index.html" class="logo"><img src="images/Home/Sustainable_Development_Goal_14.png" alt="LOGO" class="logo"></a>
<input type="checkbox" id="check">
<label for="check" class="icons">
<i class='bx bx-menu' id="close-icon"></i>
<i class='bx bx-x' id="menu-icon"></i>
</label>
<nav class="navbar">
<a href="index.html" style="--i:0;">HOME <span></span></a>
<a href="Gallery.html" style="--i:1;">GALLERY <span></span></a>
<a href="shop.html" style="--i:2;">SHOP <span></span></a>
<a href="Feedback.html" class="active" style="--i:3;">FEEDBACK <span></span></a>
<a href="profile.html" style="--i:4;">USER PROFILE <span></span></a>
<a href="team.html" style="--i:5;">ABOUT US <span></span></a>
<a href="Sitemap.html" style="--i:6;">SITE MAP <span></span></a>
</nav>
</header>
<main>
<div class="form">
<form action="mailto:[email protected]" id="form" method="post" enctype="text/plain">
<div class="heading"><h1>Leave us a Feedback</h1></div>
<br><br>
<div class="input-field">
<label for="username" id="LabelText">Name: </label><br>
<input type="text" id="username" placeholder=" Enter your name">
</div>
<br><br>
<div class="input-field">
<label for="email" id="LabelText">Email: </label><br>
<input type="email" id="email" name="email" placeholder=" Enter your email">
</div>
<br><br>
<div class="container1">
<label>Was this is your first time visting ?</label><br><br>
<input type="radio" name="First-Visit" value="Yes" required id="y">
<label for="yes">Yes</label>
<input type="radio" name="First-Visit" value="No" id="n">
<label for="no">No</label>
</div>
<br><br>
<div class="container2">
<label> Was this website informative & user friendly?</label><br><br>
<input type="radio" id="Y" name="User-friendly" required>
<label for="Yes">Yes</label>
<input type="radio" id="N" name="User-friendly" required>
<label for="No">No</label>
<br><br>
<textarea name="Suggestions" id="reason" rows="5" cols="50" placeholder="Suggest any improvement (if 'No' is selected)"></textarea>
</div>
<br>
<label for="stars" id="Rate">Rate Us</label>
<div class="rating">
<input type="number" name="rating" hidden id="stars">
<i class='bx bx-star star' style="--i: 0;"></i>
<i class='bx bx-star star' style="--i: 1;"></i>
<i class='bx bx-star star' style="--i: 2;"></i>
<i class='bx bx-star star' style="--i: 3;"></i>
<i class='bx bx-star star' style="--i: 4;"></i>
</div>
<textarea id="opinion" name="User-opinion" cols="30" rows="5" placeholder="Describe your experience..."></textarea>
<br><br>
<div class="btn-group">
<button type="submit" class="btn-submit">Submit</button>
<button type="reset" class="btn-cancel">Cancel</button>
</div>
</div>
</form>
</main>
<footer class="footer">
<nav class="footerlist">
<a href="PageEditorStudent1.html">Gayashi Nethmini</a>
<a href="PageEditorStudent2.html">Pasindu Dilshan</a>
<a href="PageEditorStudent3.html">Akila Lochana</a>
<a href="PageEditorStudent4.html">Nithika Thewjan</a>
</nav>
</footer>
<script src="Feedback.js"></script>
</body>
</html>