-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.html
More file actions
117 lines (111 loc) · 4.83 KB
/
Copy pathfeedback.html
File metadata and controls
117 lines (111 loc) · 4.83 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback and Survey Form</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
.form-section {
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
background-color: #f8f9fa;
margin-bottom: 20px;
}
.form-section h3 {
margin-bottom: 15px;
color: #343a40;
}
.form-group label {
font-weight: 500;
color: #495057;
}
</style>
</head>
<body>
<div class="container mt-5">
<h1 class="text-center mb-4">Feedback and Survey Form</h1>
<form>
<!-- Personal Information Section -->
<div class="form-section">
<h3>Personal Information</h3>
<div class="row">
<div class="col-md-6">
<div class="form-group mb-3">
<label for="name">Full Name</label>
<input type="text" class="form-control" id="name" placeholder="Enter your full name" required>
</div>
</div>
<div class="col-md-6">
<div class="form-group mb-3">
<label for="email">Email Address</label>
<input type="email" class="form-control" id="email" placeholder="Enter your email address" required>
</div>
</div>
</div>
<div class="form-group mb-3">
<label for="association">Are you a Student or Alumni?</label>
<select class="form-select" id="association" required>
<option value="" selected disabled>Select an option</option>
<option value="student">Student</option>
<option value="alumni">Alumni</option>
</select>
</div>
</div>
<!-- Feedback Section -->
<div class="form-section">
<h3>Feedback on Experiences</h3>
<div class="form-group mb-3">
<label for="experience">Please share your experiences with the association:</label>
<textarea class="form-control" id="experience" rows="5" placeholder="Share your experiences" required></textarea>
</div>
</div>
<!-- Suggestions Section -->
<div class="form-section">
<h3>Suggestions for Improvement</h3>
<div class="form-group mb-3">
<label for="suggestions">What improvements would you like to see in the association?</label>
<textarea class="form-control" id="suggestions" rows="5" placeholder="Suggest improvements" required></textarea>
</div>
</div>
<!-- Survey Section -->
<div class="form-section">
<h3>Survey for Future Initiatives</h3>
<div class="form-group mb-3">
<label>Which areas should the association focus on in the future? (Select all that apply)</label>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="networking" id="networking">
<label class="form-check-label" for="networking">
Networking and Social Events
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="mentorship" id="mentorship">
<label class="form-check-label" for="mentorship">
Mentorship Programs
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="workshops" id="workshops">
<label class="form-check-label" for="workshops">
Skill Development Workshops
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="career" id="career">
<label class="form-check-label" for="career">
Career Guidance
</label>
</div>
</div>
</div>
<!-- Submit Button -->
<div class="text-center">
<button type="submit" class="btn btn-primary">Submit Feedback</button>
</div>
</form>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>