Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ee8ddec4e8 |
69
assets/css/custom.css
Normal file
69
assets/css/custom.css
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
/* Import Google Font */
|
||||||
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--primary-color: #335EEA;
|
||||||
|
--secondary-color: #6C757D;
|
||||||
|
--bg-light: #F8F9FA;
|
||||||
|
--surface-white: #FFFFFF;
|
||||||
|
--text-dark: #212529;
|
||||||
|
--border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Inter', sans-serif;
|
||||||
|
background-color: var(--bg-light);
|
||||||
|
color: var(--text-dark);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand span {
|
||||||
|
color: var(--text-dark);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-section {
|
||||||
|
background: linear-gradient(135deg, #335EEA 0%, #214099 100%);
|
||||||
|
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://picsum.photos/seed/hr-hero/1600/400');
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center;
|
||||||
|
padding: 6rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.job-card {
|
||||||
|
background-color: var(--surface-white);
|
||||||
|
border: 1px solid #e9ecef;
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
|
||||||
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.job-card:hover {
|
||||||
|
transform: translateY(-5px);
|
||||||
|
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary {
|
||||||
|
background-color: var(--primary-color);
|
||||||
|
border-color: var(--primary-color);
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
padding: 0.5rem 1.5rem;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary:hover {
|
||||||
|
background-color: #214099;
|
||||||
|
border-color: #214099;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-control {
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-control:focus {
|
||||||
|
box-shadow: 0 0 0 0.25rem rgba(51, 94, 234, 0.25);
|
||||||
|
border-color: var(--primary-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.img-fluid {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
2
assets/js/main.js
Normal file
2
assets/js/main.js
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
// Future interactive elements will go here.
|
||||||
|
console.log("Flatlogic HR script loaded.");
|
||||||
239
index.php
239
index.php
@ -1,131 +1,134 @@
|
|||||||
<?php
|
<!DOCTYPE html>
|
||||||
declare(strict_types=1);
|
|
||||||
@ini_set('display_errors', '1');
|
|
||||||
@error_reporting(E_ALL);
|
|
||||||
@date_default_timezone_set('UTC');
|
|
||||||
|
|
||||||
$phpVersion = PHP_VERSION;
|
|
||||||
$now = date('Y-m-d H:i:s');
|
|
||||||
?>
|
|
||||||
<!doctype html>
|
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>New Style</title>
|
<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.googleapis.com">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||||
<style>
|
|
||||||
:root {
|
<!-- Custom CSS -->
|
||||||
--bg-color-start: #6a11cb;
|
<link rel="stylesheet" href="assets/css/custom.css">
|
||||||
--bg-color-end: #2575fc;
|
|
||||||
--text-color: #ffffff;
|
<!-- Open Graph -->
|
||||||
--card-bg-color: rgba(255, 255, 255, 0.01);
|
<meta property="og:title" content="Careers at Your Company">
|
||||||
--card-border-color: rgba(255, 255, 255, 0.1);
|
<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">
|
||||||
body {
|
<meta property="og:url" content="[Your URL]">
|
||||||
margin: 0;
|
<meta property="og:type" content="website">
|
||||||
font-family: 'Inter', sans-serif;
|
|
||||||
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
|
||||||
color: var(--text-color);
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
min-height: 100vh;
|
|
||||||
text-align: center;
|
|
||||||
overflow: hidden;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
body::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M-10 10L110 10M10 -10L10 110" stroke-width="1" stroke="rgba(255,255,255,0.05)"/></svg>');
|
|
||||||
animation: bg-pan 20s linear infinite;
|
|
||||||
z-index: -1;
|
|
||||||
}
|
|
||||||
@keyframes bg-pan {
|
|
||||||
0% { background-position: 0% 0%; }
|
|
||||||
100% { background-position: 100% 100%; }
|
|
||||||
}
|
|
||||||
main {
|
|
||||||
padding: 2rem;
|
|
||||||
}
|
|
||||||
.card {
|
|
||||||
background: var(--card-bg-color);
|
|
||||||
border: 1px solid var(--card-border-color);
|
|
||||||
border-radius: 16px;
|
|
||||||
padding: 2rem;
|
|
||||||
backdrop-filter: blur(20px);
|
|
||||||
-webkit-backdrop-filter: blur(20px);
|
|
||||||
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
||||||
.loader {
|
|
||||||
margin: 1.25rem auto 1.25rem;
|
|
||||||
width: 48px;
|
|
||||||
height: 48px;
|
|
||||||
border: 3px solid rgba(255, 255, 255, 0.25);
|
|
||||||
border-top-color: #fff;
|
|
||||||
border-radius: 50%;
|
|
||||||
animation: spin 1s linear infinite;
|
|
||||||
}
|
|
||||||
@keyframes spin {
|
|
||||||
from { transform: rotate(0deg); }
|
|
||||||
to { transform: rotate(360deg); }
|
|
||||||
}
|
|
||||||
.hint {
|
|
||||||
opacity: 0.9;
|
|
||||||
}
|
|
||||||
.sr-only {
|
|
||||||
position: absolute;
|
|
||||||
width: 1px; height: 1px;
|
|
||||||
padding: 0; margin: -1px;
|
|
||||||
overflow: hidden;
|
|
||||||
clip: rect(0, 0, 0, 0);
|
|
||||||
white-space: nowrap; border: 0;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 3rem;
|
|
||||||
font-weight: 700;
|
|
||||||
margin: 0 0 1rem;
|
|
||||||
letter-spacing: -1px;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin: 0.5rem 0;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
}
|
|
||||||
code {
|
|
||||||
background: rgba(0,0,0,0.2);
|
|
||||||
padding: 2px 6px;
|
|
||||||
border-radius: 4px;
|
|
||||||
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
|
||||||
}
|
|
||||||
footer {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 1rem;
|
|
||||||
font-size: 0.8rem;
|
|
||||||
opacity: 0.7;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<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>
|
<main>
|
||||||
<div class="card">
|
<section class="hero-section text-white text-center">
|
||||||
<h1>Analyzing your requirements and generating your website…</h1>
|
<div class="container">
|
||||||
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
<h1 class="display-4 fw-bold">Find Your Next Opportunity</h1>
|
||||||
<span class="sr-only">Loading…</span>
|
<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>
|
||||||
<p class="hint">Flatlogic AI is collecting your requirements and applying the first changes.</p>
|
|
||||||
<p class="hint">This page will update automatically as the plan is implemented.</p>
|
|
||||||
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
|
|
||||||
</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>
|
</main>
|
||||||
<footer>
|
|
||||||
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
<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>
|
</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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
x
Reference in New Issue
Block a user