34950-vm/index.php
2025-10-17 11:24:36 +00:00

253 lines
11 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Webinar Registration</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: #f8f9fa;
}
.webinar-container {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.webinar-card {
width: 100%;
max-width: 1200px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
border-radius: 20px;
overflow: hidden;
background: #fff;
}
.left-column {
padding: 60px;
}
.right-column {
background-color: #0d244f;
color: #fff;
padding: 60px;
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,25 50,50 T100,50" stroke="%231a3a7a" fill="none" stroke-width="1"/></svg>');
}
.brand-logo {
font-weight: bold;
font-size: 1.5rem;
margin-bottom: 40px;
}
.exclusive-tag {
color: #0d6efd;
font-weight: bold;
letter-spacing: 1px;
font-size: 0.8rem;
}
.webinar-title {
font-size: 2.8rem;
font-weight: bold;
margin-top: 10px;
}
.webinar-time {
color: #6c757d;
margin-top: 20px;
font-weight: 500;
}
.webinar-description {
margin-top: 20px;
font-size: 1.1rem;
color: #495057;
}
.speakers-section {
margin-top: 40px;
}
.speakers-section h3 {
font-weight: bold;
margin-bottom: 20px;
}
.speaker-card {
text-align: center;
}
.speaker-card img {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 10px;
}
.form-control {
background-color: #fff;
border: 1px solid #ced4da;
border-radius: 8px;
padding: 12px 15px;
}
.btn-register {
background-color: #0d6efd;
color: #fff;
border: none;
border-radius: 8px;
padding: 12px;
width: 100%;
font-weight: bold;
}
.what-you-learn {
margin-top: 40px;
}
.what-you-learn h4 {
font-weight: bold;
}
.what-you-learn ul {
list-style: none;
padding-left: 0;
}
.what-you-learn li::before {
content: "-";
margin-right: 10px;
}
</style>
</head>
<body>
<div class="webinar-container">
<div class="webinar-card">
<div class="row g-0">
<div class="col-lg-7">
<div class="left-column">
<img src="assets/pasted-20251017-093140-48a8b5ba.png" alt="Flatlogic" style="width: 280px; margin-bottom: 40px; display: block;">
<div class="exclusive-tag">EXCLUSIVE WEBINAR</div>
<h1 class="webinar-title">Professional Vibe-Coding Webinar<br><span style="font-size: 1.1rem; color: #495057;">by Flatlogic</span></h1>
<div class="webinar-time">TUESDAY, DECEMBER 29 | 1PM EST | 10AM PST | 7PM CET</div>
<p class="webinar-description">The fastest way to go from an idea to a working app you own, running on your server, with your database, using real frameworks.</p>
<div class="speakers-section">
<h3>Speakers</h3>
<div class="row">
<div class="col-md-4">
<div class="speaker-card">
<img src="https://i.pravatar.cc/80?img=4" alt="Philip Daineka">
<h5>Philip Daineka</h5>
<p class="text-muted">CEO, Flatlogic</p>
</div>
</div>
<div class="col-md-4">
<div class="speaker-card">
<img src="https://i.pravatar.cc/80?img=3" alt="Alexandr Rubanau">
<h5>Alexandr Rubanau</h5>
<p class="text-muted">Lead Engineer</p>
</div>
</div>
<div class="col-md-4">
<div class="speaker-card">
<img src="https://i.pravatar.cc/80?img=5" alt="Alexey Vertel">
<h5>Alexey Vertel</h5>
<p class="text-muted">Lead Engineer</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="right-column" id="right-column-content">
<h2>Register Form</h2>
<p>Don't miss this chance to learn and get your questions answered</p>
<div id="form-message" class="mb-3" style="color: #ffc107;"></div>
<form id="registration-form" method="POST" action="register.php">
<div class="row mb-3">
<div class="col">
<input type="text" class="form-control" name="first_name" placeholder="First name" required>
</div>
<div class="col">
<input type="text" class="form-control" name="last_name" placeholder="Last name" required>
</div>
</div>
<div class="mb-3">
<input type="email" class="form-control" name="email" placeholder="email@website.com" required>
</div>
<div class="mb-3">
<input type="text" class="form-control" name="company" placeholder="Company">
</div>
<div class="mb-3">
<label class="form-label">How did you hear about this webinar?</label>
<div class="form-check">
<input class="form-check-input" type="radio" name="how_did_you_hear" id="social" value="Social Media">
<label class="form-check-label" for="social">Social Media</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="how_did_you_hear" id="word" value="Word of mouth">
<label class="form-check-label" for="word">Word of mouth</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="how_did_you_hear" id="ad" value="Advertisement">
<label class="form-check-label" for="ad">Advertisement</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="how_did_you_hear" id="other" value="Other">
<label class="form-check-label" for="other">Other</label>
</div>
</div>
<input type="hidden" name="webinar_id" value="1">
<button type="submit" class="btn-register">Register Now</button>
</form>
<div class="what-you-learn">
<h4>SCHEDULE</h4>
<ul>
<li>Intro ~10 min</li>
<li>Creating Apps ~40-50 min</li>
<li>Q&A</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
document.getElementById('registration-form').addEventListener('submit', function(event) {
event.preventDefault();
const form = event.target;
const formData = new FormData(form);
const messageDiv = document.getElementById('form-message');
const rightColumn = document.getElementById('right-column-content');
messageDiv.textContent = ''; // Clear previous messages
fetch('register.php', {
method: 'POST',
body: formData
})
.then(response => response.json())
.then(data => {
if (data.success) {
const successHtml = `
<h2>You're Registered!</h2>
<p>Thank you for registering for the webinar. An email confirmation has been sent to you.</p>
<p>Add this event to your calendar:</p>
<div class="d-grid gap-2 mt-4">
<a href="${data.google_link}" target="_blank" class="btn btn-light">Add to Google Calendar</a>
<a href="${data.outlook_link}" download="webinar.ics" class="btn btn-outline-light">Add to Outlook/iCal</a>
</div>
<div class="what-you-learn" style="margin-top: 60px;">
<h4>SCHEDULE</h4>
<ul>
<li>Intro ~10 min</li>
<li>Creating Apps ~40-50 min</li>
<li>Q&A</li>
</ul>
</div>
`;
rightColumn.innerHTML = successHtml;
} else {
messageDiv.textContent = data.error || 'An unknown error occurred.';
}
})
.catch(error => {
console.error('Error:', error);
messageDiv.textContent = 'A network error occurred. Please try again.';
});
});
</script>
</body>
</html>