134 lines
7.0 KiB
PHP
134 lines
7.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Careers - Your Company</title>
|
|
<meta name="description" content="Join our team and find your next opportunity.">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
|
|
<!-- Google Fonts -->
|
|
<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">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
|
|
<!-- Open Graph -->
|
|
<meta property="og:title" content="Careers at Your Company">
|
|
<meta property="og:description" content="We are hiring! Find your next role with us.">
|
|
<meta property="og:image" content="https://picsum.photos/seed/hr-hero/1200/630">
|
|
<meta property="og:url" content="[Your URL]">
|
|
<meta property="og:type" content="website">
|
|
</head>
|
|
<body>
|
|
|
|
<header class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#">
|
|
<svg width="30" height="30" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 4v12l-8 6v-9l-8 6v12l16 9 16-9v-12l-8-6v9l-8-6V4Z" fill="#335EEA"></path></svg>
|
|
<span class="fw-bold ms-2">Flatlogic HR</span>
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
|
<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 active" href="#">Careers</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="#">About Us</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="#">Login</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<section class="hero-section text-white text-center">
|
|
<div class="container">
|
|
<h1 class="display-4 fw-bold">Find Your Next Opportunity</h1>
|
|
<p class="lead col-lg-8 mx-auto">We are a fast-growing team on a mission to build the future. Explore our open roles and join us on our journey.</p>
|
|
<div class="mt-4 col-lg-6 mx-auto">
|
|
<div class="input-group">
|
|
<input type="text" class="form-control form-control-lg" placeholder="Search for jobs...">
|
|
<button class="btn btn-light" type="button">Search</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="py-5">
|
|
<div class="container">
|
|
<h2 class="text-center mb-5 fw-bold">Open Positions</h2>
|
|
|
|
<?php
|
|
$jobs = [
|
|
['title' => 'Senior Frontend Developer', 'department' => 'Engineering', 'location' => 'Remote'],
|
|
['title' => 'Product Manager', 'department' => 'Product', 'location' => 'New York, NY'],
|
|
['title' => 'UX/UI Designer', 'department' => 'Design', 'location' => 'Remote'],
|
|
['title' => 'DevOps Engineer', 'department' => 'Engineering', 'location' => 'Austin, TX'],
|
|
['title' => 'Marketing Specialist', 'department' => 'Marketing', 'location' => 'San Francisco, CA'],
|
|
['title' => 'Customer Support Representative', 'department' => 'Support', 'location' => 'Remote'],
|
|
];
|
|
?>
|
|
|
|
<div class="row g-4">
|
|
<?php foreach ($jobs as $job): ?>
|
|
<div class="col-md-6 col-lg-4">
|
|
<div class="job-card h-100">
|
|
<div class="card-body">
|
|
<h5 class="card-title fw-bold"><?php echo htmlspecialchars($job['title']); ?></h5>
|
|
<div class="card-subtitle mb-3 text-muted">
|
|
<span class="me-3"><i class="bi bi-building"></i> <?php echo htmlspecialchars($job['department']); ?></span>
|
|
<span><i class="bi bi-geo-alt"></i> <?php echo htmlspecialchars($job['location']); ?></span>
|
|
</div>
|
|
<p class="card-text">We are looking for a talented individual to join our team. If you are passionate and driven, we want to hear from you.</p>
|
|
<a href="#" class="btn btn-primary">Apply Now</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="py-5 bg-light">
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
<div class="col-md-6">
|
|
<img src="https://picsum.photos/seed/hr-benefit1/600/400" class="img-fluid rounded shadow" alt="Team members enjoying a coffee break together.">
|
|
</div>
|
|
<div class="col-md-6 mt-4 mt-md-0">
|
|
<h3 class="fw-bold">A Culture of Collaboration</h3>
|
|
<p class="lead">We believe that the best ideas come from working together. Our open and inclusive environment encourages every team member to share their voice and make an impact.</p>
|
|
</div>
|
|
</div>
|
|
<div class="row align-items-center mt-5 flex-row-reverse">
|
|
<div class="col-md-6">
|
|
<img src="https://picsum.photos/seed/hr-benefit2/600/400" class="img-fluid rounded shadow" alt="An employee participating in a workshop.">
|
|
</div>
|
|
<div class="col-md-6 mt-4 mt-md-0">
|
|
<h3 class="fw-bold">Grow With Us</h3>
|
|
<p class="lead">We invest in our people. From mentorship programs to continuous learning opportunities, we are dedicated to helping you build a rewarding career.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<footer class="py-4 bg-white border-top">
|
|
<div class="container text-center">
|
|
<p class="mb-0 text-muted">© <?php echo date('Y'); ?> Flatlogic HR. All Rights Reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Custom JS -->
|
|
<script src="assets/js/main.js"></script>
|
|
</body>
|
|
</html>
|