-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathcontact.html
More file actions
510 lines (456 loc) · 20.3 KB
/
contact.html
File metadata and controls
510 lines (456 loc) · 20.3 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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pixel Phantoms | Contact</title>
<link rel="icon" href="assets/logo.png" />
<link rel="stylesheet" href="css/scroll-progress.css" />
<link rel="stylesheet" href="css/back-to-top.css" />
<link rel="stylesheet" href="css/animations.css" />
<link rel="stylesheet" href="css/contact.css" />
<link rel="stylesheet" href="css/home-gsap.css" />
<link rel="stylesheet" href="css/cursor-effect.css" />
<link rel="stylesheet" href="css/keyboard-shortcuts.css" />
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700;800&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
</head>
<body class="hacker-theme">
<!-- Global Page Loader -->
<div
id="global-loader"
class="global-loader hidden"
aria-live="polite"
aria-label="Loading page"
>
<div class="loader-spinner"></div>
<p class="loader-text">Loading...</p>
</div>
<div id="scroll-progress-container">
<div id="scroll-progress-bar"></div>
</div>
<div id="navbar-placeholder"></div>
<script src="js/navbar.js"></script>
<script>
renderNavbar('');
</script>
<main id="main-content" tabindex="-1">
<div class="page-transition-wrapper" data-page="contact">
<!-- Hero Section -->
<section class="contact-hero">
<div class="hero-background">
<div class="grid-overlay"></div>
<div class="glow-orb orb-1"></div>
<div class="glow-orb orb-2"></div>
</div>
<div class="container">
<div class="hero-content">
<span class="hero-badge"> <i class="fas fa-paper-plane"></i> Get in Touch </span>
<h1 class="hero-title" id="wave-text">Let's Build Something Amazing Together</h1>
<p class="hero-description">
Have a question, suggestion, or just want to say hi? We're here to help and would
love to hear from you.
</p>
</div>
</div>
</section>
<!-- Main Contact Section -->
<section class="contact-main">
<div class="container">
<div class="contact-grid">
<!-- Contact Form -->
<div class="form-section">
<div class="form-card">
<div class="form-header">
<h2>Send us a Message</h2>
<p>Fill out the form below and we'll get back to you as soon as possible</p>
</div>
<form id="contact-form" class="modern-form">
<div class="form-row">
<div class="input-wrapper">
<label for="contact-name" class="floating-label">
<i class="fas fa-user"></i> Full Name
</label>
<input type="text" id="contact-name" name="name" class="modern-input" placeholder="John Doe"
required minlength="2" maxlength="50" />
<div class="input-border"></div>
<div class="error-message" id="name-error"></div>
</div>
<div class="input-wrapper">
<label for="contact-email" class="floating-label">
<i class="fas fa-envelope"></i> Email Address
</label>
<input type="email" id="contact-email" name="email" class="modern-input"
placeholder="john@example.com" required />
<div class="input-border"></div>
<div class="error-message" id="email-error"></div>
</div>
</div>
<div class="input-wrapper">
<label for="contact-message" class="floating-label">
<i class="fas fa-comment-dots"></i> Your Message
</label>
<textarea id="contact-message" name="message" class="modern-input modern-textarea"
placeholder="Tell us what's on your mind..." required minlength="10" maxlength="500"
rows="6"></textarea>
<div class="input-border"></div>
<div class="char-counter"><span id="char-count">0</span>/500 characters</div>
<div class="error-message" id="message-error"></div>
</div>
<div class="rating-wrapper">
<div class="rating-line-container">
<p class="rating-label">How was your experience using this website?</p>
<div class="cyber-rating">
<div class="rate-item">
<input type="radio" name="experience" id="rate-1" value="1" />
<label for="rate-1" class="cyber-emoji">
<span class="emoji-icon">😫</span>
<span class="emoji-name">Poor</span>
</label>
</div>
<div class="rate-item">
<input type="radio" name="experience" id="rate-2" value="2" />
<label for="rate-2" class="cyber-emoji">
<span class="emoji-icon">😕</span>
<span class="emoji-name">Bad</span>
</label>
</div>
<div class="rate-item">
<input type="radio" name="experience" id="rate-3" value="3" />
<label for="rate-3" class="cyber-emoji">
<span class="emoji-icon">😐</span>
<span class="emoji-name">Average</span>
</label>
</div>
<div class="rate-item">
<input type="radio" name="experience" id="rate-4" value="4" />
<label for="rate-4" class="cyber-emoji">
<span class="emoji-icon">😃</span>
<span class="emoji-name">Good</span>
</label>
</div>
<div class="rate-item">
<input type="radio" name="experience" id="rate-5" value="5" />
<label for="rate-5" class="cyber-emoji">
<span class="emoji-icon">🤩</span>
<span class="emoji-name">Excellent</span>
</label>
</div>
</div>
</div>
</div>
<!-- Honeypot -->
<div class="input-wrapper honeypot-group" style="display: none">
<label for="website" class="sr-only">Website</label>
<input type="text" id="website" name="website" data-honeypot="true" autocomplete="off"
tabindex="-1" />
</div>
<button type="submit" class="btn-submit-modern">
<span class="btn-text">Send Message</span>
<span class="btn-icon"><i class="fas fa-paper-plane"></i></span>
<div class="btn-glow"></div>
</button>
<div id="form-feedback" class="feedback-message" role="status" aria-live="polite"></div>
</form>
</div>
</div>
<!-- Contact Info Sidebar -->
<div class="info-sidebar">
<div class="info-card-new">
<div class="info-icon">
<i class="fas fa-envelope"></i>
</div>
<h3>Email Us</h3>
<p>Drop us an email anytime</p>
<a href="mailto:sayeeygosavi@gmail.com" class="info-link">
sayeeygosavi@gmail.com
<i class="fas fa-arrow-right"></i>
</a>
</div>
<div class="info-card-new">
<div class="info-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<h3>Location</h3>
<p>Find us at</p>
<span class="info-text">Nashik, Maharashtra</span>
</div>
<div class="info-card-new">
<div class="info-icon">
<i class="fab fa-discord"></i>
</div>
<h3>Join Community</h3>
<p>Connect with us on Discord</p>
<a href="https://discord.com/invite/your-invite-link" class="info-link" target="_blank">
Join Discord Server
<i class="fas fa-arrow-right"></i>
</a>
</div>
<div class="social-connect">
<h4>Follow Us</h4>
<div class="social-icons">
<a href="https://github.com/sayeeg-11/Pixel_Phantoms" target="_blank" class="social-icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.instagram.com/pixelphantoms_" target="_blank" class="social-icon">
<i class="fab fa-instagram"></i>
</a>
<a href="https://discord.com/" target="_blank" class="social-icon">
<i class="fab fa-discord"></i>
</a>
<a href="https://www.linkedin.com/company/pixel-phantoms/" target="_blank" class="social-icon">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- REDESIGNED FAQ Section -->
<section class="faq-section-redesign">
<div class="container">
<div class="faq-container-new">
<!-- Header -->
<div class="faq-header-new">
<span class="section-badge"> <i class="fas fa-question-circle"></i> FAQ </span>
<h2>Frequently Asked <span class="gradient-text">Questions</span></h2>
<p>Everything you need to know about Pixel Phantoms</p>
</div>
<!-- Search Bar -->
<div class="faq-search-wrapper">
<i class="fas fa-search faq-search-icon"></i>
<input type="text" class="faq-search-input" id="faq-search" placeholder="Search for answers..."
aria-label="Search FAQs" />
<button class="faq-clear-search" id="faq-clear" aria-label="Clear search">
<i class="fas fa-times"></i>
</button>
</div>
<!-- Category Filter -->
<div class="faq-categories">
<button class="faq-category-btn active" data-category="all">All Questions</button>
<button class="faq-category-btn" data-category="getting-started">
Getting Started
</button>
<button class="faq-category-btn" data-category="contributions">
Contributions
</button>
<button class="faq-category-btn" data-category="events">Events</button>
<button class="faq-category-btn" data-category="support">Support</button>
</div>
<!-- FAQ Accordion -->
<div class="faq-accordion" id="faq-accordion">
<!-- Getting Started -->
<div class="faq-item-new" data-category="getting-started">
<button class="faq-question" aria-expanded="false">
<span class="faq-question-text">
<i class="fas fa-users faq-question-icon"></i>
<span>How can I join Pixel Phantoms?</span>
</span>
<i class="fas fa-chevron-down faq-toggle-icon"></i>
</button>
<div class="faq-answer">
<p>
You can join by hopping into our Discord server or watching out for our
recruitment drives announced on the Events page. We welcome developers of all
skill levels!
</p>
</div>
</div>
<div class="faq-item-new" data-category="getting-started">
<button class="faq-question" aria-expanded="false">
<span class="faq-question-text">
<i class="fas fa-graduation-cap faq-question-icon"></i>
<span>Is this community beginner friendly?</span>
</span>
<i class="fas fa-chevron-down faq-toggle-icon"></i>
</button>
<div class="faq-answer">
<p>
Absolutely! Our motto is "From Students, For Students." We have mentorship
programs, workshops, and resources specifically designed for beginners to help
you grow.
</p>
</div>
</div>
<!-- Contributions -->
<div class="faq-item-new" data-category="contributions">
<button class="faq-question" aria-expanded="false">
<span class="faq-question-text">
<i class="fas fa-code-branch faq-question-icon"></i>
<span>Can I contribute to Open Source projects?</span>
</span>
<i class="fas fa-chevron-down faq-toggle-icon"></i>
</button>
<div class="faq-answer">
<p>
Yes! Check out our GitHub organization or the Projects page to find
repositories looking for contributors. We encourage and support open source
contributions.
</p>
</div>
</div>
<!-- Events -->
<div class="faq-item-new" data-category="events">
<button class="faq-question" aria-expanded="false">
<span class="faq-question-text">
<i class="fas fa-calendar-alt faq-question-icon"></i>
<span>What kind of events do you organize?</span>
</span>
<i class="fas fa-chevron-down faq-toggle-icon"></i>
</button>
<div class="faq-answer">
<p>
We organize hackathons, workshops, coding challenges, tech talks, and
networking events. Check our Events page for upcoming activities and past
event highlights.
</p>
</div>
</div>
<div class="faq-item-new" data-category="events">
<button class="faq-question" aria-expanded="false">
<span class="faq-question-text">
<i class="fas fa-trophy faq-question-icon"></i>
<span>Are there any competitions or challenges?</span>
</span>
<i class="fas fa-chevron-down faq-toggle-icon"></i>
</button>
<div class="faq-answer">
<p>
Yes! We regularly host coding competitions, design challenges, and hackathons
with exciting prizes and recognition opportunities for participants.
</p>
</div>
</div>
<!-- Support -->
<div class="faq-item-new" data-category="support">
<button class="faq-question" aria-expanded="false">
<span class="faq-question-text">
<i class="fas fa-hands-helping faq-question-icon"></i>
<span>How can I get help or mentorship?</span>
</span>
<i class="fas fa-chevron-down faq-toggle-icon"></i>
</button>
<div class="faq-answer">
<p>
Join our Discord community where experienced members and mentors are always
ready to help. We also have dedicated mentorship programs for focused
learning.
</p>
</div>
</div>
</div>
<!-- No Results Message -->
<div class="faq-no-results" id="faq-no-results">
<i class="fas fa-search"></i>
<h3>No results found</h3>
<p>Try adjusting your search or browse all questions</p>
</div>
<!-- CTA Section -->
<div class="faq-cta">
<h3>Still have questions?</h3>
<p>Can't find the answer you're looking for? We're here to help!</p>
<a href="#contact-form" class="faq-cta-btn">
<i class="fas fa-paper-plane"></i>
Contact Us
</a>
</div>
</div>
</div>
</section>
</div>
</main>
<div id="footer-placeholder"></div>
<script src="js/footer.js"></script>
<script>
const basePath = '';
document.addEventListener('DOMContentLoaded', () => {
if (typeof renderFooter === 'function') {
renderFooter(basePath);
} else {
console.error(
'renderFooter function not found. Make sure footer.js is loaded correctly.'
);
}
});
</script>
<script src="js/keyboard-shortcuts.js" defer></script>
<script src="js/page-transitions.js" defer></script>
<script src="js/back-to-top.min.js" defer></script>
<script src="js/theme.min.js" defer></script>
<script src="js/cursor-effect.js" defer></script>
<script src="js/main.js" defer></script>
<script src="js/contact.js" defer></script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('./sw.js');
});
}
</script>
<script src="js/keyboard-shortcuts.js" defer></script>
<script src="js/page-transitions.js" defer></script>
<script src="js/back-to-top.min.js" defer></script>
<script src="js/theme.min.js" defer></script>
<script src="js/cursor-effect.js" defer></script>
<script src="js/main.js" defer></script>
<script src="js/contact.js" defer></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
const searchInput = document.getElementById("faq-search");
const clearBtn = document.getElementById("faq-clear");
const categoryButtons = document.querySelectorAll(".faq-category-btn");
const faqItems = document.querySelectorAll(".faq-item-new");
const noResults = document.getElementById("faq-no-results");
let activeCategory = "all";
function filterFAQs() {
const searchTerm = searchInput.value.toLowerCase();
let visibleCount = 0;
faqItems.forEach(item => {
const category = item.dataset.category;
const text = item.innerText.toLowerCase();
const matchesCategory =
activeCategory === "all" || category === activeCategory;
const matchesSearch =
text.includes(searchTerm);
if (matchesCategory && matchesSearch) {
item.style.display = "block";
visibleCount++;
} else {
item.style.display = "none";
}
});
// Show or hide no results message
if (visibleCount === 0) {
noResults.style.display = "block";
} else {
noResults.style.display = "none";
}
}
// 🔎 Search input
searchInput.addEventListener("input", filterFAQs);
// ❌ Clear search
clearBtn.addEventListener("click", () => {
searchInput.value = "";
filterFAQs();
});
// 🏷 Category buttons
categoryButtons.forEach(button => {
button.addEventListener("click", () => {
categoryButtons.forEach(btn =>
btn.classList.remove("active")
);
button.classList.add("active");
activeCategory = button.dataset.category;
filterFAQs();
});
});
});
</script>
</body>
</html>