-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.html
61 lines (58 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Feedback</title>
</head>
<body>
<nav id="navbar-container"></nav>
<div id="assignment-sticker-container"></div>
<section class="main_title" id="feedback">
<h1 class="bigger_title">Feedback Form</h1>
<form enctype="text/plain" method="POST" action="mailto:[email protected]?subject=Feedback" id="feedback_form">
<table class="set_middle feedback_table">
<form>
<tr>
<td><label for="name">Your name</label><br>
<input type="text" name="name" id="name" maxlength="6">
</td>
</tr>
<tr>
<td><label for="pnum">Phone number</label><br>
<input type="text" id="pnum" name="pnum">
</td>
</tr>
<tr>
<td><label for="email">Your email address</label><br>
<input type="email" id="email" name="email">
</td>
</tr>
<tr>
<td>What is your gender?<br>
<input type="radio" id="female" name="sex" value="female" checked="checked"><label
for="female">Female</label>
<input type="radio" id="male" name="sex" value="male"><label for="male">Male</label>
<input type="radio" id="others" name="sex" value="others"><label for="others">Other</label>
<input type="radio" id="none" name="sex" value="none"><label for="others">I prefer not to say</label>
</td>
</tr>
<tr>
<td>Please fill in your feedback<br>
<textarea name="feedback" id="feedback" cols="53" rows="15"></textarea>
</td>
</tr>
<tr>
<td class="buttonsLine">
<input type="reset" id="clear" value="Clear">
<input type="submit" value="Submit">
</td>
</tr>
</table>
</form>
</section>
<div id="footer-container"></div>
<script src="script.js"></script>
</body>
</html>