forked from GreyDGL/PentestGPT_website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwaitlist.html
More file actions
584 lines (543 loc) · 23.4 KB
/
waitlist.html
File metadata and controls
584 lines (543 loc) · 23.4 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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Waitlist - PentestGPT</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Fira+Code:wght@300;400;500;600&family=VT323&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<style>
/* Form Styles */
.form-container {
max-width: 600px;
margin: 0 auto;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: var(--text-secondary);
font-family: var(--font-mono);
font-size: 0.875rem;
}
.form-group label .prompt {
color: var(--accent);
}
.terminal-input,
.terminal-select {
width: 100%;
padding: 0.875rem 1rem;
background: rgba(0, 0, 0, 0.4);
border: 1px solid var(--border);
border-radius: 8px;
color: var(--text-primary);
font-family: var(--font-mono);
font-size: 0.875rem;
transition: all 0.3s ease;
}
.terminal-input:focus,
.terminal-select:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.1);
}
.terminal-input::placeholder {
color: var(--text-muted);
}
.terminal-select {
cursor: pointer;
}
.terminal-select option {
background: var(--bg-primary);
color: var(--text-primary);
}
.checkbox-group {
display: flex;
align-items: flex-start;
gap: 0.75rem;
}
.checkbox-label {
display: flex;
align-items: flex-start;
gap: 0.75rem;
cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
width: 18px;
height: 18px;
margin-top: 2px;
accent-color: var(--accent);
cursor: pointer;
}
.checkbox-text {
color: var(--text-secondary);
font-size: 0.875rem;
}
.checkbox-text a {
color: var(--accent);
text-decoration: none;
}
.checkbox-text a:hover {
text-decoration: underline;
}
.form-actions {
margin-top: 2rem;
text-align: center;
}
.form-message {
margin-top: 1.5rem;
padding: 1rem;
border-radius: 8px;
text-align: center;
font-family: var(--font-mono);
}
.form-message.success {
background: rgba(0, 255, 136, 0.1);
border: 1px solid var(--accent);
color: var(--accent);
}
.form-message.error {
background: rgba(255, 0, 0, 0.1);
border: 1px solid #ff4444;
color: #ff4444;
}
.timeline-steps {
display: flex;
flex-direction: column;
gap: 1.5rem;
max-width: 600px;
margin: 0 auto;
}
.step {
display: flex;
gap: 1rem;
align-items: flex-start;
}
.step-number {
color: var(--accent);
font-family: var(--font-mono);
font-weight: bold;
flex-shrink: 0;
}
.step-content h3 {
color: var(--text-primary);
margin-bottom: 0.25rem;
font-size: 1rem;
}
.step-content p {
color: var(--text-secondary);
font-size: 0.875rem;
margin: 0;
}
.faq-list {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.faq-item h3 {
color: var(--text-primary);
font-size: 1rem;
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.faq-item h3 .bullet {
color: var(--accent);
}
.faq-item p {
color: var(--text-secondary);
margin: 0;
padding-left: 2rem;
}
</style>
</head>
<body>
<!-- Animated Background -->
<div class="animated-bg">
<div class="grid-bg"></div>
<div class="glow-orb glow-orb-1"></div>
<div class="glow-orb glow-orb-2"></div>
<div class="glow-orb glow-orb-3"></div>
<!-- Floating Blocks -->
<div class="floating-blocks">
<div class="block block-1">██<br>██</div>
<div class="block block-2">░░░<br>░░░<br>░░░</div>
<div class="block block-3">▓▓<br>▓▓</div>
<div class="block block-4">█<br>██<br>█</div>
<div class="block block-5">░░<br>░░</div>
<div class="block block-6">▓▓▓<br>▓▓▓</div>
<div class="block block-7">███<br>█</div>
<div class="block block-8">░<br>░░<br>░</div>
<div class="block block-9">▓▓</div>
<div class="block block-10">██<br>██<br>██</div>
</div>
</div>
<div class="noise"></div>
<nav class="nav">
<div class="nav-inner">
<a href="index.html" class="logo">
<span class="logo-bracket"><</span>pentestgpt<span class="logo-bracket"> /></span>
</a>
<div class="nav-links">
<a href="research.html">research</a>
<a href="paper.html">paper</a>
<a href="team.html">team</a>
<a href="https://github.com/GreyDGL/PentestGPT" target="_blank">github</a>
</div>
</div>
</nav>
<main>
<section class="hero" style="padding-bottom: 2rem;">
<div class="hero-content">
<div class="hero-label fade-in">
<span class="label-dot"></span>
Early Access Program
</div>
<h1 class="page-title fade-in stagger-1">// Join the Waitlist</h1>
<p class="hero-description fade-in stagger-2">
Be among the first to experience PentestGPT 2.0<span class="typing-cursor"></span>
</p>
</div>
</section>
<div class="divider"></div>
<section class="section">
<div class="section-header fade-in">
<span class="section-number">01</span>
<h2>// Early Access Benefits</h2>
</div>
<div class="section-content">
<div class="code-block fade-in">
<div class="code-header">
<span class="code-dot"></span>
<span class="code-dot"></span>
<span class="code-dot"></span>
<span class="code-title">benefits.sh</span>
</div>
<pre class="code-content">$ ./waitlist --benefits
<span class="fn">[+] Early Access Benefits:</span>
• Priority access to PentestGPT 2.0 beta
• Exclusive research papers and documentation
• Direct feedback channel with development team
• Community Discord server invitation
• 50% discount on enterprise features
• Monthly technical briefings
<span class="kw">[+] Current waitlist position:</span> <span class="str">Loading...</span></pre>
</div>
</div>
</section>
<div class="divider"></div>
<section class="stats">
<div class="stat fade-in">
<span class="stat-value" id="waitlistCount">2,847</span>
<span class="stat-label">People Waiting</span>
</div>
<div class="stat fade-in stagger-1">
<span class="stat-value">Q1 2025</span>
<span class="stat-label">Beta Launch</span>
</div>
<div class="stat fade-in stagger-2">
<span class="stat-value">500</span>
<span class="stat-label">Beta Slots</span>
</div>
<div class="stat fade-in stagger-3">
<span class="stat-value">45</span>
<span class="stat-label">Countries</span>
</div>
</section>
<div class="divider"></div>
<section class="section">
<div class="section-header fade-in">
<span class="section-number">02</span>
<h2>// Reserve Your Spot</h2>
</div>
<div class="section-content">
<div class="form-container fade-in">
<form id="waitlistForm" action="https://formspree.io/f/xldqalan" method="POST">
<div class="form-group">
<label for="email">
<span class="prompt">$</span> Enter your email:
</label>
<input
type="email"
id="email"
name="email"
placeholder="hacker@example.com"
required
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$"
class="terminal-input"
>
</div>
<div class="form-group">
<label for="organization">
<span class="prompt">$</span> Organization (optional):
</label>
<input
type="text"
id="organization"
name="organization"
placeholder="Security Lab Inc."
class="terminal-input"
>
</div>
<div class="form-group">
<label for="role">
<span class="prompt">$</span> Your role:
</label>
<select id="role" name="role" class="terminal-select">
<option value="">--SELECT--</option>
<option value="security-researcher">Security Researcher</option>
<option value="penetration-tester">Penetration Tester</option>
<option value="security-engineer">Security Engineer</option>
<option value="ciso">CISO/Security Manager</option>
<option value="developer">Developer</option>
<option value="student">Student/Academic</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group" id="otherRoleGroup" style="display: none;">
<label for="otherRole">
<span class="prompt">$</span> Please specify your role:
</label>
<input
type="text"
id="otherRole"
name="otherRole"
placeholder="e.g., Security Consultant, DevOps Engineer"
class="terminal-input"
>
</div>
<div class="form-group">
<label for="interest">
<span class="prompt">$</span> Primary interest:
</label>
<select id="interest" name="interest" class="terminal-select">
<option value="">--SELECT--</option>
<option value="research">Research & Development</option>
<option value="enterprise">Enterprise Security</option>
<option value="bug-bounty">Bug Bounty Hunting</option>
<option value="education">Education & Training</option>
<option value="personal">Personal Projects</option>
</select>
</div>
<div class="form-group checkbox-group">
<label class="checkbox-label">
<input type="checkbox" id="updates" name="updates" checked>
<span class="checkbox-text">Send me updates about PentestGPT development</span>
</label>
</div>
<div class="form-group checkbox-group">
<label class="checkbox-label">
<input type="checkbox" id="terms" name="terms" required>
<span class="checkbox-text">I agree to the <a href="#">Terms of Service</a> and <a href="#">Privacy Policy</a></span>
</label>
</div>
<div class="form-actions">
<button type="submit" class="btn btn-primary">
Join Waitlist <span class="arrow">→</span>
</button>
</div>
</form>
<div id="formMessage" class="form-message" style="display: none;"></div>
</div>
</div>
</section>
<div class="divider"></div>
<section class="section">
<div class="section-header fade-in">
<span class="section-number">03</span>
<h2>// What Happens Next?</h2>
</div>
<div class="section-content">
<div class="timeline-steps fade-in">
<div class="step">
<span class="step-number">[1]</span>
<div class="step-content">
<h3>Confirmation Email</h3>
<p>You'll receive a confirmation with your waitlist position</p>
</div>
</div>
<div class="step">
<span class="step-number">[2]</span>
<div class="step-content">
<h3>Monthly Updates</h3>
<p>Regular updates on development progress and new features</p>
</div>
</div>
<div class="step">
<span class="step-number">[3]</span>
<div class="step-content">
<h3>Beta Invitation</h3>
<p>Early access invitation when your turn comes</p>
</div>
</div>
<div class="step">
<span class="step-number">[4]</span>
<div class="step-content">
<h3>Onboarding</h3>
<p>Personalized onboarding and technical support</p>
</div>
</div>
</div>
</div>
</section>
<div class="divider"></div>
<section class="section">
<div class="section-header fade-in">
<span class="section-number">04</span>
<h2>// FAQ</h2>
</div>
<div class="section-content">
<div class="faq-list fade-in">
<div class="faq-item">
<h3><span class="bullet">[Q]</span> When will PentestGPT 2.0 be available?</h3>
<p>We're targeting Q1 2025 for the beta release, with general availability in Q3 2025.</p>
</div>
<div class="faq-item">
<h3><span class="bullet">[Q]</span> Will it remain open source?</h3>
<p>Yes! The core framework will always be open source. Enterprise features will be available as optional add-ons.</p>
</div>
<div class="faq-item">
<h3><span class="bullet">[Q]</span> What are the system requirements?</h3>
<p>PentestGPT 2.0 will run on Linux, macOS, and Windows with Python 3.8+ and 8GB RAM minimum.</p>
</div>
<div class="faq-item">
<h3><span class="bullet">[Q]</span> Can I use it for bug bounties?</h3>
<p>Absolutely! PentestGPT is designed for ethical hacking and bug bounty programs.</p>
</div>
</div>
</div>
</section>
<div class="divider"></div>
<section class="cta fade-in">
<pre class="cta-ascii">
┌──────────────────────────────────────┐
│ │
│ $ pentestgpt --waitlist │
│ [+] Position: #2,848 │
│ [+] Estimated access: Q1 2025 │
│ │
└──────────────────────────────────────┘</pre>
<h2>Questions?</h2>
<p>Your data is encrypted and never shared with third parties.</p>
<a href="mailto:gelei@pentestgpt.com" class="btn btn-ghost">
Contact Support
</a>
</section>
</main>
<footer class="footer">
<div class="footer-inner">
<div class="footer-grid">
<div class="footer-col">
<span class="footer-label">// Project</span>
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a href="paper.html">Paper</a>
</div>
<div class="footer-col">
<span class="footer-label">// Team</span>
<a href="team.html">Members</a>
<a href="https://github.com/GreyDGL/PentestGPT/graphs/contributors" target="_blank">Contributors</a>
</div>
<div class="footer-col">
<span class="footer-label">// Links</span>
<a href="https://github.com/GreyDGL/PentestGPT" target="_blank">GitHub</a>
<a href="https://www.usenix.org/conference/usenixsecurity24/presentation/deng" target="_blank">USENIX</a>
</div>
</div>
<div class="footer-bottom">
<span>© 2025 PentestGPT</span>
<span class="sep">·</span>
<span>MIT License</span>
</div>
</div>
</footer>
<script>
// Show/hide "Other" role text input
document.addEventListener('DOMContentLoaded', function() {
const roleSelect = document.getElementById('role');
const otherRoleGroup = document.getElementById('otherRoleGroup');
const otherRoleInput = document.getElementById('otherRole');
roleSelect.addEventListener('change', function() {
if (this.value === 'other') {
otherRoleGroup.style.display = 'block';
otherRoleInput.required = true;
} else {
otherRoleGroup.style.display = 'none';
otherRoleInput.required = false;
otherRoleInput.value = '';
}
});
// Formspree form submission
const form = document.getElementById('waitlistForm');
const formMessage = document.getElementById('formMessage');
form.addEventListener('submit', async function(e) {
e.preventDefault();
const submitBtn = form.querySelector('button[type="submit"]');
const originalText = submitBtn.innerHTML;
submitBtn.innerHTML = 'Submitting... <span class="arrow">→</span>';
submitBtn.disabled = true;
try {
const response = await fetch(form.action, {
method: 'POST',
body: new FormData(form),
headers: { 'Accept': 'application/json' }
});
if (response.ok) {
formMessage.className = 'form-message success';
formMessage.textContent = '[+] Success! You\'ve been added to the waitlist. Check your email for confirmation.';
formMessage.style.display = 'block';
form.reset();
} else {
throw new Error('Form submission failed');
}
} catch (error) {
formMessage.className = 'form-message error';
formMessage.textContent = '[-] Error: Could not submit form. Please try again or email gelei@pentestgpt.com directly.';
formMessage.style.display = 'block';
}
submitBtn.innerHTML = originalText;
submitBtn.disabled = false;
});
});
// Scroll-triggered animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, observerOptions);
document.querySelectorAll('.fade-in, .fade-in-left, .fade-in-right, .scale-in').forEach(el => {
observer.observe(el);
});
// Parallax effect on scroll for glow orbs and blocks
let ticking = false;
window.addEventListener('scroll', () => {
if (!ticking) {
window.requestAnimationFrame(() => {
const scrollY = window.scrollY;
document.querySelectorAll('.glow-orb').forEach((orb, i) => {
const speed = 0.05 + (i * 0.02);
orb.style.transform = `translateY(${scrollY * speed}px)`;
});
document.querySelectorAll('.block').forEach((block, i) => {
const speed = 0.02 + (i * 0.01);
block.style.transform = `translateY(${scrollY * speed}px)`;
});
ticking = false;
});
ticking = true;
}
});
</script>
</body>
</html>