-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeedback.html
More file actions
97 lines (88 loc) · 4.06 KB
/
feedback.html
File metadata and controls
97 lines (88 loc) · 4.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://www.foodpanda.com/wp-content/uploads/2020/07/cropped-panda-head_pink-32x32.png"
sizes="32x32" />
<link rel="stylesheet" href="./css/feedback.css" />
<title>Feedback</title>
</head>
<body>
<div class="container">
<header class="header">
<h1 id="title" class="text-center" style="font-weight: 900; color: #140229;">FoodPanda Feedback Form</h1>
<p id="description" class="description text-center" style="font-weight: 900; color: #140229">
Thank you for taking the time to help us improve the platform
</p>
</header>
<form id="survey-form" action="connect.php" method="POST">
<div class="form-group">
<label id="name-label" for="name">Name *</label>
<input type="text" name="fullName" id="name" class="form-control" placeholder="Enter your name" required />
</div>
<div class="form-group">
<label id="email-label" for="email">Email *</label>
<input type="email" name="eMail" id="email" class="form-control" placeholder="Enter your Email" required />
</div>
<div class="form-group">
<label id="number-label" for="number">Phone Number *</label>
<input type="tel" name="phoneNumber" id="number" class="form-control" placeholder="Enter your Phone Number" required/>
</div>
<div class="form-group">
<label id="number-label" for="number">Age<span class="clue">(optional)</span></label>
<input type="number" name="age" id="number" min="10" max="99" class="form-control" placeholder="Age" />
</div>
<div class="form-group">
<p>Would you recommend FoodPanda to a friend?</p>
<label>
<input name="user-recommend" value="definitely" type="radio" class="input-radio" checked />Definitely</label>
<label>
<input name="user-recommend" value="maybe" type="radio" class="input-radio" />Maybe</label>
<label><input name="user-recommend" value="not-sure" type="radio" class="input-radio" />Not sure</label>
</div>
<div class="form-group">
<p>
What is your favorite feature of FoodPanda?
</p>
<select id="most-like" name="mostLike" class="form-control" required>
<option disabled selected value>Select an option</option>
<option value="challenges">Service</option>
<option value="projects">Opportunities</option>
<option value="community">Community</option>
<option value="openSource">Open Source</option>
<option value="openSource">All of the above</option>
</select>
</div>
<div class="form-group">
<p>
What would you like to see improved?
<span class="clue">(Check all that apply)</span>
</p>
<label><input name="prefer" value="front-end-projects" type="checkbox" class="input-checkbox" />Service</label>
<label>
<input name="prefer" value="back-end-projects" type="checkbox" class="input-checkbox" />Opportunities</label>
<label><input name="prefer" value="data-visualization" type="checkbox" class="input-checkbox" />Designs</label>
<label><input name="prefer" value="challenges" type="checkbox" class="input-checkbox" />Accessibility</label>
<label><input name="prefer" value="open-source-community" type="checkbox" class="input-checkbox" />Open Source
Community</label>
<div><br>
<br>
</div>
<div class="form-group">
<p>Any comments or suggestions?</p>
<textarea id="comments" class="input-textarea" name="comment"
placeholder="Enter your comment here..."></textarea>
</div>
<div class="form-group">
<button type="submit" id="submit" class="submit-button">
<a href="index.html">
Submit
</a>
</button>
</div>
</form>
</div>
</body>
</html>