-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (101 loc) · 4.22 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Survey Form</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Main Title -->
<div class="container">
<header class="header">
<h1 id="title" class="text-center">Soccer Survey Form App</h1>
<p id="description" class="description text-center">
Thank you for taking the time to help us improve the app
</p>
</header>
<!-- Name, Email, Age -->
<form id="survey-form">
<div class="form-group">
<label id="name-label" for="name">Name</label>
<input type="text" name="name" 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">Age<span class="clue"> (optional)</span></label>
<input type="number" name="age" id="number" min="10" max="99" class="form-control" placeholder="Age" />
</div>
<!-- Role -->
<div class="form-group">
<p>Which option best describes your current role?</p>
<select id="dropdown" name="role" class="form-control" required>
<option disabled selected value>Select current role</option>
<option value="student">Player</option>
<option value="fan">Fan</option>
<option value="retired">Retired</option>
<option value="preferNo">Prefer not to say</option>
<option value="other">Other</option>
</select>
</div>
<!-- Recommend App-->
<div class="form-group">
<p>Would you recommend our app 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="definitely" type="radio" class="input-radio" checked />Maybe</label>
<label>
<input name="user-recommend" value="definitely" type="radio" class="input-radio" checked />Not Sure</label>
</div>
<!-- Features -->
<div class="form-group">
<p>
What is your favorite feature?
</p>
<select id="most-like" name="mostLike" class="form-control" required>
<option disabled selected value>Select an option</option>
<option value="interactive">Interactive</option>
<option value="easyToUse">Easy to Use</option>
<option value="fast">Fast</option>
<option value="openSource">Open Source</option>
</select>
</div>
<!-- Improved -->
<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" />Games
</label>
<label>
<input name="prefer" value="front-end-projects" type="checkbox" class="input-checkbox" />Challenges
</label>
<label>
<input name="prefer" value="front-end-projects" type="checkbox" class="input-checkbox" />UI/UX
</label>
<label>
<input name="prefer" value="front-end-projects" type="checkbox" class="input-checkbox" />Videos
</label>
<label>
<input name="prefer" value="front-end-projects" type="checkbox" class="input-checkbox" />Live Streams
</label>
<label>
<input name="prefer" value="front-end-projects" type="checkbox" class="input-checkbox" />Blog
</label>
<!-- Comments or Suggestions -->
<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">Submit
</button>
</div>
</form>
</div>
</body>
</html>