-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfarewellsurvey.txt
90 lines (85 loc) · 2.55 KB
/
farewellsurvey.txt
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
<h1 id="title"> Farewell Party Survey Form </h1>
<form id="survey-form">
<div class="form-control">
<label for="name" id="label-name">
Name
</label>
<input type="text" id="name" placeholder="Enter your name" />
</div>
<div class="form-control">
<label for="email" id="label-email">
Email
</label>
<input type="email" id="email" placeholder="Enter your email" />
</div>
<div class="form-control">
<label for="age" id="label-age">
Age
</label>
<input type="number" id="age" placeholder="Enter your age" />
</div>
<div class="form-control">
<label for="role" id="label-role">
Which option best describes you?
</label>
<select name="role" id="role">
<option value="student">Student</option>
<option value="intern">Intern</option>
<option value="professional">Professional</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-control">
<label id="label-attendance">
Will you attend the party?
</label>
<label for="attend-1" id="label-attend-1">
<input type="radio" id="attend-1" name="attend">Yes</input>
</label>
<label for="attend-2" id="label-attend-2">
<input type="radio" id="attend-2" name="attend">No</input>
</label>
</div>
<div class="form-control">
<label>What did you like about the program?</label>
<br>
<label for="inp-1">
<input type="checkbox" name="inp">Training</input>
</label>
<br>
<label for="inp-2">
<input type="checkbox" name="inp">The Learning Sessions from Industry Experts</input>
</label>
<br>
<label for="inp-3">
<input type="checkbox" name="inp">Community Meetups</input>
</label>
<br>
<label for="inp-4">
<input type="checkbox" name="inp">Brown Bag Sessions</input>
</label>
<br>
<label for="inp-5">
<input type="checkbox" name="inp">Switching to Hybrid Mode</input>
</label>
<br>
<label for="inp-6">
<input type="checkbox" name="inp">Food, Office etc.</input>
</label>
</div>
<div class="form-control">
<label for="comment">
Any comments or suggestions
</label>
<textarea name="comment" id="comment" placeholder="Enter your comment here">
</textarea>
</div>
<div class="button">
<button type="reset" value="reset" id="reset">
Reset
</button>
<button type="submit" value="submit" id="submit">
Submit
</button>
</div>
</form>