-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
269 lines (236 loc) · 10.6 KB
/
Copy pathindex.html
File metadata and controls
269 lines (236 loc) · 10.6 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Cyber Security Club | Uttara University Recruitment Form</title>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
/* General Colors */
body {
background: #0b0f19; /* deep navy */
color: #e0e0e0; /* soft grey for general text */
font-family: 'Segoe UI', sans-serif;
}
header, footer {
background: linear-gradient(90deg, #001f4d, #004080);
color: #ffffff;
}
footer a, footer strong {
color: #00e5ff !important;
}
/* Sticky header */
header {
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}
/* Form Card */
.tw-card {
background: rgba(15, 26, 45, 0.95);
border: 1px solid rgba(0, 229, 255, 0.3);
border-radius: 1rem;
padding: 2rem;
box-shadow: 0 0 25px rgba(0, 229, 255, 0.1);
backdrop-filter: blur(8px);
color: #ffffff;
}
/* Form Inputs */
.form-control, .form-select, textarea {
background-color: rgba(255,255,255,0.05);
border: 1px solid rgba(0, 229, 255, 0.3);
color: #ffffff !important;
transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus, textarea:focus {
border-color: #00e5ff;
box-shadow: 0 0 10px rgba(0,229,255,0.5);
background-color: rgba(255,255,255,0.1);
color: #ffffff !important;
}
option {
background-color: #e8ebf1;
color: #080303;
}
label {
color: #00e5ff;
font-weight: 500;
}
::placeholder {
color: #b0c7d1 !important;
opacity: 1;
}
/* Button */
.btn-cyber {
background: linear-gradient(90deg, #00e5ff, #007bff);
color: #fff;
font-weight: 500;
border: none;
transition: all 0.3s ease;
box-shadow: 0 0 10px rgba(0,229,255,0.5);
}
.btn-cyber:hover {
box-shadow: 0 0 25px rgba(0,229,255,0.8);
transform: translateY(-2px);
}
h2 {
color: #00e5ff;
}
p {
color: #80deea;
}
</style>
</head>
<body>
<!-- HEADER -->
<header class="container-fluid py-3">
<div class="container d-flex justify-content-between align-items-center">
<a href="#" class="d-flex align-items-center gap-3 text-decoration-none text-white">
<div class="rounded-circle bg-white text-primary fw-bold d-flex align-items-center justify-content-center" style="width:48px;height:48px;">CSC</div>
<div>
<h1 class="h5 mb-0 text-white">Cyber Security Club</h1>
<small class="text-white-50">Uttara University — Recruitment Form</small>
</div>
</a>
</div>
</header>
<!-- MAIN -->
<main class="container my-5">
<div class="row g-4">
<div class="col-12 col-lg-8 mx-auto">
<div class="tw-card text-center">
<h2 class="text-2xl font-semibold mb-2">Cyber Security Club Recruitment Form</h2>
<p class="text-sm mb-4">
Apply now to join the Cyber Security Club, Uttara University. All fields are required.
</p>
<form id="recruitForm" class="text-start" novalidate>
<div class="row g-3">
<div class="col-md-6">
<label for="firstName">First Name</label>
<input type="text" id="firstName" name="firstName" class="form-control" placeholder="Enter your first name" required>
</div>
<div class="col-md-6">
<label for="lastName">Last Name</label>
<input type="text" id="lastName" name="lastName" class="form-control" placeholder="Enter your last name" required>
</div>
</div>
<div class="row g-3 mt-3">
<div class="col-md-6">
<label for="studentId">Student ID</label>
<input type="text" id="studentId" name="studentId" class="form-control" placeholder="Your student ID" required>
</div>
<div class="col-md-3">
<label for="batch">Batch</label>
<input type="text" id="batch" name="batch" class="form-control" placeholder="e.g. 58th" required>
</div>
<div class="col-md-3">
<label for="section">Section</label>
<input type="text" id="section" name="section" class="form-control" placeholder="e.g. A" required>
</div>
</div>
<div class="mt-3">
<label for="email">University Email</label>
<input type="email" id="email" name="email" class="form-control" placeholder="example@uttarauniversity.edu.bd" required>
</div>
<div class="mt-3">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone" class="form-control" placeholder="Enter your active phone number" required>
</div>
<div class="mt-3">
<label for="department">Department</label>
<select class="form-select" id="department" name="department" required>
<option value="">Select your department...</option>
<option>CSE — Computer Science and Engineering</option>
<option>EEE — Electrical and Electronic Engineering</option>
<option>ETE — Electronics and Telecommunication Engineering</option>
<option>CE — Civil Engineering</option
<option>BBA — Bachelor of Business Administration</option>
<option>MBA — Master of Business Administration</option>
<option>ECO — Economics</option>
<option>ENG — English</option>
<option>LAW — Law</option>
<option>JMC — Journalism and Mass Communication</option>
<option>SOC — Sociology</option>
<option>PHY — Physics</option>
<option>CHEM — Chemistry</option>
<option>MATH — Mathematics</option>
<option>BIO — Biological Sciences</option>
</optgroup>
</select>
</div>
<div class="mt-3">
<label for="role">Preferred Role</label>
<select class="form-select" id="role" name="role" required>
<option value="">Select a role...</option>
<option>General Secretary (GS)</option>
<option>Assistant General Secretary (AGS)</option>
<option>Organizing Secretary (OS)</option>
<option>Assistant Organizing Secretary (AOS)</option>
<option>Developer</option>
<option>Designer</option>
<option>Executive Member</option>
</select>
</div>
<div class="mt-3">
<label for="experience">Previous Experience in Cybersecurity</label>
<textarea id="experience" name="experience" rows="3" class="form-control" placeholder="Describe any previous experience, projects, or competitions..." required></textarea>
</div>
<div class="mt-3">
<label>Areas of Interest</label>
<div class="text-light small">
<div class="form-check"><input class="form-check-input" type="checkbox" value="Ethical Hacking & Penetration Testing" id="interest1"><label class="form-check-label" for="interest1">Ethical Hacking & Penetration Testing</label></div>
<div class="form-check"><input class="form-check-input" type="checkbox" value="Digital Forensics & Incident Response" id="interest2"><label class="form-check-label" for="interest2">Digital Forensics & Incident Response</label></div>
<div class="form-check"><input class="form-check-input" type="checkbox" value="Network Security" id="interest3"><label class="form-check-label" for="interest3">Network Security</label></div>
<div class="form-check"><input class="form-check-input" type="checkbox" value="Web Application Security" id="interest4"><label class="form-check-label" for="interest4">Web Application Security</label></div>
<div class="form-check"><input class="form-check-input" type="checkbox" value="Malware Analysis" id="interest5"><label class="form-check-label" for="interest5">Malware Analysis</label></div>
<div class="form-check"><input class="form-check-input" type="checkbox" value="Cryptography" id="interest6"><label class="form-check-label" for="interest6">Cryptography</label></div>
<div class="form-check"><input class="form-check-input" type="checkbox" value="CTF Competitions" id="interest7"><label class="form-check-label" for="interest7">CTF Competitions</label></div>
<div class="form-check"><input class="form-check-input" type="checkbox" value="Security Research" id="interest8"><label class="form-check-label" for="interest8">Security Research</label></div>
</div>
</div>
<div class="mt-3">
<label for="skills">Technical Skills (Programming languages, tools, etc.)</label>
<textarea id="skills" name="skills" rows="3" class="form-control" placeholder="List programming languages, frameworks, or tools you know..." required></textarea>
</div>
<div class="mt-3">
<label for="motivation">Why do you want to join?</label>
<textarea id="motivation" name="motivation" rows="4" class="form-control" placeholder="Write your motivation here..." required></textarea>
</div>
<div class="mt-3">
<label for="resume">Upload Resume (PDF)</label>
<input class="form-control" type="file" id="resume" name="resume" accept=".pdf" required>
</div>
<div class="form-check mt-4">
<input class="form-check-input" type="checkbox" id="agreement" required>
<label class="form-check-label text-light" for="agreement">
I agree to the club's terms and conditions and commit to active participation.
</label>
</div>
<div class="text-center mt-4">
<button class="btn btn-cyber px-5 py-2 mt-2" type="submit">Submit Application</button>
</div>
</form>
</div>
</div>
</div>
</main>
<!-- FOOTER -->
<footer class="container-fluid py-4 text-center mt-5">
<div class="container">
Developed by <strong>x0sa1d</strong> · Built with Bootstrap · © <span id="year"></span>
</div>
</footer>
<!--
<script>
document.getElementById('year').textContent = new Date().getFullYear();
// Form submit alert
document.getElementById('recruitForm').addEventListener('submit', function(e){
e.preventDefault();
alert("✅ Application submitted successfully!");
this.reset();
});
</script> -->
</body>
</html>