34148-vm/careers.php
2025-09-17 12:59:18 +00:00

148 lines
5.9 KiB
PHP

<?php
// Sample data for job listings
$jobs = [
[
'title' => 'Senior Frontend Developer',
'department' => 'Engineering',
'location' => 'Remote',
'type' => 'Full-time'
],
[
'title' => 'Product Manager',
'department' => 'Product',
'location' => 'New York, NY',
'type' => 'Full-time'
],
[
'title' => 'UI/UX Designer',
'department' => 'Design',
'location' => 'Remote',
'type' => 'Contract'
],
[
'title' => 'HR Generalist',
'department' => 'People Ops',
'location' => 'San Francisco, CA',
'type' => 'Full-time'
],
[
'title' => 'DevOps Engineer',
'department' => 'Engineering',
'location' => 'Remote',
'type' => 'Full-time'
],
[
'title' => 'Marketing Specialist',
'department' => 'Marketing',
'location' => 'Austin, TX',
'type' => 'Part-time'
]
];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Careers - HR Platform</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
<meta name="description" content="Find your next career opportunity with us. Browse open positions and apply today.">
<meta name="robots" content="index, follow">
</head>
<body>
<!-- Header -->
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="index.php">HR Platform</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.php">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="careers.php">Open Positions</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="hero-section">
<div class="container">
<h1>Find Your Next Opportunity</h1>
<p class="lead mb-4">Join our team and help us build the future of work.</p>
<div class="col-md-6 mx-auto">
<div class="input-group">
<input type="text" class="form-control form-control-lg" placeholder="Search for jobs...">
<button class="btn btn-secondary" type="button">Search</button>
</div>
</div>
</div>
</header>
<!-- Job Listings -->
<main class="job-listings">
<div class="container">
<h2 class="text-center mb-5">Current Openings</h2>
<div class="row">
<?php foreach ($jobs as $job): ?>
<div class="col-md-6 col-lg-4">
<div class="job-card">
<h5><?php echo htmlspecialchars($job['title']); ?></h5>
<p class="mb-2 text-muted">
<?php echo htmlspecialchars($job['department']); ?> &middot; <?php echo htmlspecialchars($job['location']); ?>
</p>
<span class="badge bg-light text-dark border"><?php echo htmlspecialchars($job['type']); ?></span>
<a href="#" class="btn btn-primary mt-3 stretched-link">View Details</a>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</main>
<!-- Why Join Us & Benefits Sections -->
<section class="container my-5">
<div class="row align-items-center">
<div class="col-md-6">
<img src="https://picsum.photos/seed/hr-team1/800/600" class="img-fluid rounded" alt="Two colleagues smiling and working together on a laptop.">
</div>
<div class="col-md-6">
<h3>Why Join Us?</h3>
<p>We are a passionate team dedicated to creating a better work environment for everyone. We value collaboration, innovation, and a people-first culture. Join us to make a real impact.</p>
</div>
</div>
</section>
<section class="container my-5">
<div class="row align-items-center flex-row-reverse">
<div class="col-md-6">
<img src="https://picsum.photos/seed/hr-team2/800/600" class="img-fluid rounded" alt="A person writing on a whiteboard during a brainstorming session.">
</div>
<div class="col-md-6">
<h3>Our Benefits</h3>
<p>We offer competitive salaries, comprehensive health benefits, flexible work hours, and a generous vacation policy. We believe in investing in our employees' well-being and professional growth.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>&copy; <?php echo date('Y'); ?> HR Platform. All Rights Reserved.</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>