Initial commit: AI Recruitment Site for Ryans Recruit Firm

- Complete PostgreSQL schema with migrations
- Node.js/Express backend with authentication
- Public website (home, about, services, jobs, apply, contact)
- Admin dashboard with applicant and job management
- CV upload and storage in PostgreSQL BYTEA
- Docker Compose setup for deployment
- Session-based authentication
- Responsive design with Ryan brand colors
This commit is contained in:
Mikael Westöö
2026-01-23 21:17:24 +01:00
commit 406d278a39
23 changed files with 3842 additions and 0 deletions

177
public/about.html Normal file
View File

@@ -0,0 +1,177 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Ryans Recruit Firm</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<header>
<nav class="container">
<div class="logo">Ryans Recruit Firm</div>
<ul class="nav-links">
<li><a href="/">Home</a></li>
<li><a href="/about.html" class="active">About</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/jobs.html">Jobs</a></li>
<li><a href="/contact.html">Contact</a></li>
<li><a href="/admin/login.html" class="btn btn-primary btn-sm">Admin</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="container">
<h1>About Ryans Recruit Firm</h1>
<p>Building careers and companies through exceptional talent placement</p>
</div>
</section>
<section>
<div class="container-narrow">
<h2>Our Story</h2>
<p>Founded in 2015, Ryans Recruit Firm has grown to become one of the most trusted names in professional recruitment. What started as a small team with a vision has evolved into a comprehensive recruitment solution serving clients across multiple industries worldwide.</p>
<p>Our founder, Ryan Martinez, saw a gap in the recruitment industry: too many firms focused on filling positions quickly rather than finding the right match. With a background in HR and a passion for helping people find meaningful work, Ryan set out to create a different kind of recruitment firm—one that prioritizes quality, transparency, and long-term success.</p>
<p>Today, we're proud to have helped thousands of professionals find their dream jobs and assisted hundreds of companies in building exceptional teams.</p>
</div>
</section>
<section style="background: var(--bg-white);">
<div class="container">
<div class="section-title">
<h2>Our Values</h2>
<p>The principles that guide everything we do</p>
</div>
<div class="grid grid-2">
<div class="card">
<h3>🎯 Excellence</h3>
<p>We maintain the highest standards in candidate screening, client service, and professional conduct. Mediocrity is not in our vocabulary.</p>
</div>
<div class="card">
<h3>🤝 Integrity</h3>
<p>Honesty and transparency in all our dealings. We build trust through consistent, ethical behavior and open communication.</p>
</div>
<div class="card">
<h3>💡 Innovation</h3>
<p>We leverage the latest technology and methodologies to improve our recruitment process and deliver better results.</p>
</div>
<div class="card">
<h3>❤️ Empathy</h3>
<p>We understand that behind every resume is a person with dreams, and behind every job posting is a company with needs. We care about both.</p>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="section-title">
<h2>By the Numbers</h2>
<p>Our track record speaks for itself</p>
</div>
<div class="grid grid-4">
<div class="stat-card">
<div class="stat-value">5,000+</div>
<div class="stat-label">Successful Placements</div>
</div>
<div class="stat-card">
<div class="stat-value">500+</div>
<div class="stat-label">Partner Companies</div>
</div>
<div class="stat-card">
<div class="stat-value">95%</div>
<div class="stat-label">Client Satisfaction</div>
</div>
<div class="stat-card">
<div class="stat-value">14</div>
<div class="stat-label">Average Days to Placement</div>
</div>
</div>
</div>
</section>
<section style="background: var(--bg-white);">
<div class="container-narrow">
<div class="section-title">
<h2>Our Mission</h2>
</div>
<div class="card">
<p style="font-size: 1.125rem; line-height: 1.8; color: var(--text-dark); text-align: center;">
To revolutionize the recruitment industry by creating meaningful connections between talented professionals and forward-thinking companies, while maintaining the highest standards of integrity, transparency, and service excellence.
</p>
</div>
</div>
</section>
<section>
<div class="container text-center">
<h2 style="margin-bottom: 1rem;">Ready to Work With Us?</h2>
<p style="font-size: 1.125rem; color: var(--text-light); margin-bottom: 2rem;">
Whether you're looking for your next career move or seeking top talent for your company
</p>
<div style="display: flex; gap: 1rem; justify-content: center;">
<a href="/jobs.html" class="btn btn-primary btn-lg">Browse Jobs</a>
<a href="/contact.html" class="btn btn-secondary btn-lg">Contact Us</a>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Ryans Recruit Firm</h3>
<p style="color: rgba(255, 255, 255, 0.8);">
Your trusted partner in career advancement and talent acquisition.
</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about.html">About Us</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/jobs.html">Job Listings</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>For Employers</h3>
<ul>
<li><a href="/contact.html">Post a Job</a></li>
<li><a href="/contact.html">Our Process</a></li>
<li><a href="/contact.html">Pricing</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact</h3>
<ul>
<li>Email: info@ryansrecruit.com</li>
<li>Phone: +1 (555) 123-4567</li>
<li>Hours: Mon-Fri 9AM-6PM EST</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2026 Ryans Recruit Firm. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>

View File

@@ -0,0 +1,82 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Applications - Ryans Recruit Admin</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body style="background: #F8FAFC; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; margin: 0;">
<!-- Admin Header -->
<header style="background: white; border-bottom: 1px solid #E2E8F0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);">
<div style="max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center;">
<div style="display: flex; align-items: center; gap: 12px;">
<div style="width: 32px; height: 32px; background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 16px;">R</div>
<h1 style="margin: 0; color: #1E293B; font-size: 18px; font-weight: 700;">Ryans Recruit Admin</h1>
</div>
<nav style="display: flex; gap: 32px; align-items: center;">
<a href="/admin/dashboard.html" style="color: #64748B; text-decoration: none; font-weight: 500; font-size: 14px; transition: color 0.2s;" onmouseover="this.style.color='#2563EB'" onmouseout="this.style.color='#64748B'">Dashboard</a>
<a href="/admin/applicants.html" style="color: #2563EB; text-decoration: none; font-weight: 500; font-size: 14px;">Applicants</a>
<a href="/admin/jobs.html" style="color: #64748B; text-decoration: none; font-weight: 500; font-size: 14px; transition: color 0.2s;" onmouseover="this.style.color='#2563EB'" onmouseout="this.style.color='#64748B'">Jobs</a>
<div style="display: flex; align-items: center; gap: 16px; padding-left: 32px; border-left: 1px solid #E2E8F0;">
<span id="admin-name" style="color: #64748B; font-size: 14px;">Admin</span>
<button onclick="logout()" style="background: #EF4444; color: white; padding: 8px 16px; border: none; border-radius: 6px; font-weight: 500; font-size: 13px; cursor: pointer; transition: background 0.2s;" onmouseover="this.style.background='#DC2626'" onmouseout="this.style.background='#EF4444'">Logout</button>
</div>
</nav>
</div>
</header>
<!-- Hero Section -->
<section style="background: linear-gradient(135deg, #2563EB 0%, #1E293B 100%); padding: 48px 24px; text-align: center;">
<h2 style="color: white; margin: 0; font-size: 36px; font-weight: 700;">Applications Management</h2>
<p style="color: #E0E7FF; margin: 12px 0 0 0; font-size: 16px;">Review and manage all job applications</p>
</section>
<!-- Main Content -->
<main style="max-width: 1200px; margin: 0 auto; padding: 40px 24px;">
<!-- Filter Section -->
<div style="background: white; border-radius: 12px; padding: 24px; margin-bottom: 24px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);">
<h3 style="color: #1E293B; margin: 0 0 16px 0; font-size: 16px; font-weight: 600;">Filters</h3>
<div style="display: flex; gap: 16px; flex-wrap: wrap;">
<div>
<label for="status-filter" style="display: block; color: #64748B; font-size: 13px; font-weight: 500; margin-bottom: 6px;">Status</label>
<select id="status-filter" style="padding: 8px 12px; border: 1px solid #E2E8F0; border-radius: 6px; font-size: 14px; background: white; cursor: pointer; transition: border-color 0.2s;" onchange="filterApplications(this.value)" onfocus="this.style.borderColor='#2563EB'" onblur="this.style.borderColor='#E2E8F0'">
<option value="">All Applications</option>
<option value="new">New</option>
<option value="reviewed">Reviewed</option>
<option value="shortlisted">Shortlisted</option>
<option value="rejected">Rejected</option>
<option value="accepted">Accepted</option>
</select>
</div>
</div>
</div>
<!-- Loading Spinner -->
<div id="loading" style="text-align: center; padding: 48px 24px; display: none;">
<div style="display: inline-block;">
<div style="width: 40px; height: 40px; border: 4px solid #E2E8F0; border-top: 4px solid #2563EB; border-radius: 50%; animation: spin 1s linear infinite;"></div>
</div>
<p style="color: #64748B; margin-top: 16px; font-size: 14px;">Loading applications...</p>
</div>
<!-- Applications Container -->
<div id="applications-container" style="display: grid; gap: 16px;">
<!-- Applications will be populated here by JavaScript -->
</div>
<!-- Empty State -->
<div id="empty-state" style="text-align: center; padding: 60px 24px; background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);">
<p style="color: #94A3B8; font-size: 16px; margin: 0;">No applications found</p>
</div>
</main>
<style>
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
<script src="/js/admin.js"></script>
</body>
</html>

View File

@@ -0,0 +1,88 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Dashboard - Ryans Recruit</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body style="background: #F8FAFC; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; margin: 0;">
<!-- Admin Header -->
<header style="background: white; border-bottom: 1px solid #E2E8F0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);">
<div style="max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center;">
<div style="display: flex; align-items: center; gap: 12px;">
<div style="width: 32px; height: 32px; background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 16px;">R</div>
<h1 style="margin: 0; color: #1E293B; font-size: 18px; font-weight: 700;">Ryans Recruit Admin</h1>
</div>
<nav style="display: flex; gap: 32px; align-items: center;">
<a href="/admin/dashboard.html" style="color: #2563EB; text-decoration: none; font-weight: 500; font-size: 14px;">Dashboard</a>
<a href="/admin/applicants.html" style="color: #64748B; text-decoration: none; font-weight: 500; font-size: 14px; transition: color 0.2s;" onmouseover="this.style.color='#2563EB'" onmouseout="this.style.color='#64748B'">Applicants</a>
<a href="/admin/jobs.html" style="color: #64748B; text-decoration: none; font-weight: 500; font-size: 14px; transition: color 0.2s;" onmouseover="this.style.color='#2563EB'" onmouseout="this.style.color='#64748B'">Jobs</a>
<div style="display: flex; align-items: center; gap: 16px; padding-left: 32px; border-left: 1px solid #E2E8F0;">
<span id="admin-name" style="color: #64748B; font-size: 14px;">Admin</span>
<button onclick="logout()" style="background: #EF4444; color: white; padding: 8px 16px; border: none; border-radius: 6px; font-weight: 500; font-size: 13px; cursor: pointer; transition: background 0.2s;" onmouseover="this.style.background='#DC2626'" onmouseout="this.style.background='#EF4444'">Logout</button>
</div>
</nav>
</div>
</header>
<!-- Hero Section -->
<section style="background: linear-gradient(135deg, #2563EB 0%, #1E293B 100%); padding: 48px 24px; text-align: center;">
<h2 style="color: white; margin: 0; font-size: 36px; font-weight: 700;">Admin Dashboard</h2>
<p style="color: #E0E7FF; margin: 12px 0 0 0; font-size: 16px;">Manage applications, jobs, and track recruitment metrics</p>
</section>
<!-- Main Content -->
<main style="max-width: 1200px; margin: 0 auto; padding: 40px 24px;">
<!-- Statistics Grid -->
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 40px;">
<!-- New Applications Card -->
<div style="background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); border-left: 4px solid #2563EB;">
<p style="color: #64748B; margin: 0 0 8px 0; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;">New Applications</p>
<p id="stat-new-applications" style="color: #1E293B; margin: 0; font-size: 32px; font-weight: 700;">0</p>
<p style="color: #94A3B8; margin: 8px 0 0 0; font-size: 13px;">This week</p>
</div>
<!-- Total Applications Card -->
<div style="background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); border-left: 4px solid #059669;">
<p style="color: #64748B; margin: 0 0 8px 0; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;">Total Applications</p>
<p id="stat-total-applications" style="color: #1E293B; margin: 0; font-size: 32px; font-weight: 700;">0</p>
<p style="color: #94A3B8; margin: 8px 0 0 0; font-size: 13px;">All time</p>
</div>
<!-- Total Applicants Card -->
<div style="background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); border-left: 4px solid #F59E0B;">
<p style="color: #64748B; margin: 0 0 8px 0; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;">Total Applicants</p>
<p id="stat-total-applicants" style="color: #1E293B; margin: 0; font-size: 32px; font-weight: 700;">0</p>
<p style="color: #94A3B8; margin: 8px 0 0 0; font-size: 13px;">Unique users</p>
</div>
<!-- Active Jobs Card -->
<div style="background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); border-left: 4px solid #8B5CF6;">
<p style="color: #64748B; margin: 0 0 8px 0; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;">Active Jobs</p>
<p id="stat-active-jobs" style="color: #1E293B; margin: 0; font-size: 32px; font-weight: 700;">0</p>
<p style="color: #94A3B8; margin: 8px 0 0 0; font-size: 13px;">Open positions</p>
</div>
</div>
<!-- Quick Links Section -->
<section style="background: white; border-radius: 12px; padding: 32px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);">
<h3 style="color: #1E293B; margin: 0 0 24px 0; font-size: 18px; font-weight: 700;">Quick Access</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;">
<a href="/admin/applicants.html" style="display: block; padding: 20px; border: 2px solid #E2E8F0; border-radius: 8px; text-decoration: none; text-align: center; transition: all 0.2s;" onmouseover="this.style.borderColor='#2563EB'; this.style.backgroundColor='#F0F9FF'" onmouseout="this.style.borderColor='#E2E8F0'; this.style.backgroundColor='white'">
<p style="color: #2563EB; margin: 0 0 8px 0; font-size: 24px;">📋</p>
<p style="color: #1E293B; margin: 0; font-size: 16px; font-weight: 600;">View Applications</p>
<p style="color: #64748B; margin: 4px 0 0 0; font-size: 13px;">Manage all applicants</p>
</a>
<a href="/admin/jobs.html" style="display: block; padding: 20px; border: 2px solid #E2E8F0; border-radius: 8px; text-decoration: none; text-align: center; transition: all 0.2s;" onmouseover="this.style.borderColor='#059669'; this.style.backgroundColor='#F0FDF4'" onmouseout="this.style.borderColor='#E2E8F0'; this.style.backgroundColor='white'">
<p style="color: #059669; margin: 0 0 8px 0; font-size: 24px;">💼</p>
<p style="color: #1E293B; margin: 0; font-size: 16px; font-weight: 600;">Manage Jobs</p>
<p style="color: #64748B; margin: 4px 0 0 0; font-size: 13px;">Create and edit positions</p>
</a>
</div>
</section>
</main>
<script src="/js/admin.js"></script>
</body>
</html>

75
public/admin/jobs.html Normal file
View File

@@ -0,0 +1,75 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jobs - Ryans Recruit Admin</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body style="background: #F8FAFC; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; margin: 0;">
<!-- Admin Header -->
<header style="background: white; border-bottom: 1px solid #E2E8F0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);">
<div style="max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center;">
<div style="display: flex; align-items: center; gap: 12px;">
<div style="width: 32px; height: 32px; background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 16px;">R</div>
<h1 style="margin: 0; color: #1E293B; font-size: 18px; font-weight: 700;">Ryans Recruit Admin</h1>
</div>
<nav style="display: flex; gap: 32px; align-items: center;">
<a href="/admin/dashboard.html" style="color: #64748B; text-decoration: none; font-weight: 500; font-size: 14px; transition: color 0.2s;" onmouseover="this.style.color='#2563EB'" onmouseout="this.style.color='#64748B'">Dashboard</a>
<a href="/admin/applicants.html" style="color: #64748B; text-decoration: none; font-weight: 500; font-size: 14px; transition: color 0.2s;" onmouseover="this.style.color='#2563EB'" onmouseout="this.style.color='#64748B'">Applicants</a>
<a href="/admin/jobs.html" style="color: #2563EB; text-decoration: none; font-weight: 500; font-size: 14px;">Jobs</a>
<div style="display: flex; align-items: center; gap: 16px; padding-left: 32px; border-left: 1px solid #E2E8F0;">
<span id="admin-name" style="color: #64748B; font-size: 14px;">Admin</span>
<button onclick="logout()" style="background: #EF4444; color: white; padding: 8px 16px; border: none; border-radius: 6px; font-weight: 500; font-size: 13px; cursor: pointer; transition: background 0.2s;" onmouseover="this.style.background='#DC2626'" onmouseout="this.style.background='#EF4444'">Logout</button>
</div>
</nav>
</div>
</header>
<!-- Hero Section -->
<section style="background: linear-gradient(135deg, #2563EB 0%, #1E293B 100%); padding: 48px 24px; text-align: center;">
<h2 style="color: white; margin: 0; font-size: 36px; font-weight: 700;">Job Postings Management</h2>
<p style="color: #E0E7FF; margin: 12px 0 0 0; font-size: 16px;">Create, edit, and manage job positions</p>
</section>
<!-- Main Content -->
<main style="max-width: 1200px; margin: 0 auto; padding: 40px 24px;">
<!-- Action Bar -->
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;">
<h3 style="color: #1E293B; margin: 0; font-size: 18px; font-weight: 700;">All Job Postings</h3>
<button onclick="createNewJob()" style="background: linear-gradient(135deg, #059669 0%, #047857 100%); color: white; padding: 10px 20px; border: none; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;" onmouseover="this.style.transform='translateY(-2px)'; this.style.boxShadow='0 8px 16px rgba(5, 150, 105, 0.3)'" onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='none'">
+ New Job
</button>
</div>
<!-- Loading Spinner -->
<div id="loading" style="text-align: center; padding: 48px 24px; display: none;">
<div style="display: inline-block;">
<div style="width: 40px; height: 40px; border: 4px solid #E2E8F0; border-top: 4px solid #2563EB; border-radius: 50%; animation: spin 1s linear infinite;"></div>
</div>
<p style="color: #64748B; margin-top: 16px; font-size: 14px;">Loading jobs...</p>
</div>
<!-- Jobs Container -->
<div id="jobs-container" style="display: grid; gap: 16px;">
<!-- Jobs will be populated here by JavaScript -->
</div>
<!-- Empty State -->
<div id="empty-state" style="text-align: center; padding: 60px 24px; background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);">
<p style="color: #94A3B8; font-size: 16px; margin: 0;">No job postings yet</p>
<button onclick="createNewJob()" style="background: linear-gradient(135deg, #059669 0%, #047857 100%); color: white; padding: 10px 20px; border: none; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; margin-top: 16px; transition: transform 0.2s, box-shadow 0.2s;" onmouseover="this.style.transform='translateY(-2px)'; this.style.boxShadow='0 8px 16px rgba(5, 150, 105, 0.3)'" onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='none'">
Create First Job
</button>
</div>
</main>
<style>
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
<script src="/js/admin.js"></script>
</body>
</html>

82
public/admin/login.html Normal file
View File

@@ -0,0 +1,82 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Login - Ryans Recruit</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body style="background: linear-gradient(135deg, #2563EB 0%, #1E293B 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
<div style="background: white; border-radius: 12px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); padding: 48px 40px; width: 100%; max-width: 400px;">
<h1 style="text-align: center; color: #1E293B; margin: 0 0 8px 0; font-size: 28px;">Ryans Recruit</h1>
<p style="text-align: center; color: #64748B; margin: 0 0 32px 0; font-size: 14px;">Admin Portal</p>
<!-- First Admin Notice -->
<div id="first-admin-notice" style="background: #DBEAFE; border: 1px solid #93C5FD; border-radius: 8px; padding: 12px; margin-bottom: 24px; color: #1E40AF; font-size: 14px; display: none;">
<strong>First Admin Setup:</strong> Create your admin account to get started.
</div>
<form id="login-form" style="display: flex; flex-direction: column; gap: 16px;">
<!-- Email Field -->
<div>
<label for="email" style="display: block; font-weight: 600; color: #1E293B; margin-bottom: 6px; font-size: 14px;">Email</label>
<input
type="email"
id="email"
name="email"
required
placeholder="admin@example.com"
style="width: 100%; padding: 10px 12px; border: 1px solid #E2E8F0; border-radius: 6px; font-size: 14px; box-sizing: border-box; transition: border-color 0.2s;"
onfocus="this.style.borderColor='#2563EB'"
onblur="this.style.borderColor='#E2E8F0'"
>
</div>
<!-- Password Field -->
<div>
<label for="password" style="display: block; font-weight: 600; color: #1E293B; margin-bottom: 6px; font-size: 14px;">Password</label>
<input
type="password"
id="password"
name="password"
required
placeholder="••••••••"
style="width: 100%; padding: 10px 12px; border: 1px solid #E2E8F0; border-radius: 6px; font-size: 14px; box-sizing: border-box; transition: border-color 0.2s;"
onfocus="this.style.borderColor='#2563EB'"
onblur="this.style.borderColor='#E2E8F0'"
>
</div>
<!-- Full Name Field (Initially Hidden) -->
<div id="full-name-group" style="display: none;">
<label for="full-name" style="display: block; font-weight: 600; color: #1E293B; margin-bottom: 6px; font-size: 14px;">Full Name</label>
<input
type="text"
id="full-name"
name="full-name"
placeholder="John Doe"
style="width: 100%; padding: 10px 12px; border: 1px solid #E2E8F0; border-radius: 6px; font-size: 14px; box-sizing: border-box; transition: border-color 0.2s;"
onfocus="this.style.borderColor='#2563EB'"
onblur="this.style.borderColor='#E2E8F0'"
>
</div>
<!-- Submit Button -->
<button
type="submit"
style="background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); color: white; padding: 12px; border: none; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; margin-top: 8px;"
onmouseover="this.style.transform='translateY(-2px)'; this.style.boxShadow='0 8px 16px rgba(37, 99, 235, 0.3)'"
onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='none'"
>
Sign In
</button>
</form>
<p style="text-align: center; color: #64748B; font-size: 13px; margin-top: 20px;">
Back to <a href="/" style="color: #2563EB; text-decoration: none; font-weight: 500;">Main Site</a>
</p>
</div>
<script src="/js/admin.js"></script>
</body>
</html>

171
public/apply.html Normal file
View File

@@ -0,0 +1,171 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apply for Job - Ryans Recruit Firm</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<header>
<nav class="container">
<div class="logo">Ryans Recruit Firm</div>
<ul class="nav-links">
<li><a href="/">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/jobs.html">Jobs</a></li>
<li><a href="/contact.html">Contact</a></li>
<li><a href="/admin/login.html" class="btn btn-primary btn-sm">Admin</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="container">
<h1>Apply Now</h1>
<p>Submit your application for consideration</p>
</div>
</section>
<section>
<div class="container-narrow">
<div id="job-details" style="background: var(--bg-white); padding: 2rem; border-radius: 0.5rem; box-shadow: var(--shadow-md); margin-bottom: 2rem;">
<h2 id="job-title" style="color: var(--secondary-color); margin-bottom: 1rem;">Job Title</h2>
<div id="job-info" style="color: var(--text-light);">
<!-- Job details will be loaded here -->
</div>
</div>
<div style="background: var(--bg-white); padding: 2rem; border-radius: 0.5rem; box-shadow: var(--shadow-md);">
<h3 style="color: var(--secondary-color); margin-bottom: 2rem;">Application Form</h3>
<form id="application-form">
<!-- Hidden jobId field -->
<input type="hidden" id="jobId" name="jobId" value="">
<!-- Full Name -->
<div class="form-group">
<label for="fullName">Full Name <span style="color: var(--error);">*</span></label>
<input type="text" id="fullName" name="fullName" required placeholder="Enter your full name">
</div>
<!-- Email -->
<div class="form-group">
<label for="email">Email Address <span style="color: var(--error);">*</span></label>
<input type="email" id="email" name="email" required placeholder="your.email@example.com">
</div>
<!-- Phone -->
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone" placeholder="+1 (555) 123-4567">
</div>
<!-- LinkedIn URL -->
<div class="form-group">
<label for="linkedinUrl">LinkedIn URL</label>
<input type="url" id="linkedinUrl" name="linkedinUrl" placeholder="https://linkedin.com/in/yourprofile">
</div>
<!-- Portfolio URL -->
<div class="form-group">
<label for="portfolioUrl">Portfolio URL</label>
<input type="url" id="portfolioUrl" name="portfolioUrl" placeholder="https://yourportfolio.com">
</div>
<!-- Years of Experience -->
<div class="form-group">
<label for="yearsExperience">Years of Experience</label>
<input type="number" id="yearsExperience" name="yearsExperience" min="0" max="70" placeholder="0">
</div>
<!-- Current Position -->
<div class="form-group">
<label for="currentPosition">Current Position</label>
<input type="text" id="currentPosition" name="currentPosition" placeholder="e.g., Senior Software Engineer">
</div>
<!-- Current Company -->
<div class="form-group">
<label for="currentCompany">Current Company</label>
<input type="text" id="currentCompany" name="currentCompany" placeholder="e.g., Tech Corp Inc.">
</div>
<!-- Preferred Location -->
<div class="form-group">
<label for="preferredLocation">Preferred Location</label>
<input type="text" id="preferredLocation" name="preferredLocation" placeholder="e.g., New York, NY or Remote">
</div>
<!-- Cover Letter -->
<div class="form-group">
<label for="coverLetter">Cover Letter</label>
<textarea id="coverLetter" name="coverLetter" placeholder="Tell us why you're interested in this position and what makes you a great fit..."></textarea>
</div>
<!-- CV Upload -->
<div class="form-group">
<label for="cv">Upload CV/Resume <span style="color: var(--error);">*</span></label>
<input type="file" id="cv" name="cv" accept=".pdf,.doc,.docx" required>
<div class="form-help">Accepted formats: PDF, DOC, DOCX (Max 5MB)</div>
</div>
<!-- Submit Button -->
<div class="form-group" style="margin-top: 2rem;">
<button type="submit" class="btn btn-primary btn-lg" style="width: 100%;">Submit Application</button>
</div>
</form>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Ryans Recruit Firm</h3>
<p style="color: rgba(255, 255, 255, 0.8);">
Your trusted partner in career advancement and talent acquisition.
</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about.html">About Us</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/jobs.html">Job Listings</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>For Employers</h3>
<ul>
<li><a href="/contact.html">Post a Job</a></li>
<li><a href="/contact.html">Our Process</a></li>
<li><a href="/contact.html">Pricing</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact</h3>
<ul>
<li>Email: info@ryansrecruit.com</li>
<li>Phone: +1 (555) 123-4567</li>
<li>Hours: Mon-Fri 9AM-6PM EST</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2026 Ryans Recruit Firm. All rights reserved.</p>
</div>
</div>
</footer>
<script src="/js/main.js"></script>
</body>
</html>

169
public/contact.html Normal file
View File

@@ -0,0 +1,169 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Ryans Recruit Firm</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<header>
<nav class="container">
<div class="logo">Ryans Recruit Firm</div>
<ul class="nav-links">
<li><a href="/">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/jobs.html">Jobs</a></li>
<li><a href="/contact.html" class="active">Contact</a></li>
<li><a href="/admin/login.html" class="btn btn-primary btn-sm">Admin</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="container">
<h1>Contact Us</h1>
<p>Get in touch with our team - we're here to help</p>
</div>
</section>
<section>
<div class="container">
<div class="grid grid-2" style="gap: 3rem; align-items: start;">
<!-- Contact Form -->
<div style="background: var(--bg-white); padding: 2rem; border-radius: 0.5rem; box-shadow: var(--shadow-md);">
<h3 style="color: var(--secondary-color); margin-bottom: 2rem;">Send us a Message</h3>
<form id="contact-form">
<!-- Name -->
<div class="form-group">
<label for="name">Name <span style="color: var(--error);">*</span></label>
<input type="text" id="name" name="name" required placeholder="Your full name">
</div>
<!-- Email -->
<div class="form-group">
<label for="contactEmail">Email Address <span style="color: var(--error);">*</span></label>
<input type="email" id="contactEmail" name="email" required placeholder="your.email@example.com">
</div>
<!-- Subject -->
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" placeholder="What is this about?">
</div>
<!-- Message -->
<div class="form-group">
<label for="message">Message <span style="color: var(--error);">*</span></label>
<textarea id="message" name="message" required placeholder="Tell us more about your inquiry..."></textarea>
</div>
<!-- Submit Button -->
<button type="submit" class="btn btn-primary btn-lg" style="width: 100%;">Send Message</button>
</form>
</div>
<!-- Contact Information -->
<div>
<h3 style="color: var(--secondary-color); margin-bottom: 2rem;">Get in Touch</h3>
<div style="background: var(--bg-white); padding: 2rem; border-radius: 0.5rem; box-shadow: var(--shadow-md); margin-bottom: 2rem;">
<div style="margin-bottom: 2rem;">
<h4 style="color: var(--secondary-color); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.75rem;">
<span style="font-size: 1.5rem;">📧</span> Email
</h4>
<p style="color: var(--text-light); margin-bottom: 0;">
<a href="mailto:info@ryansrecruit.com" style="color: var(--primary-color); font-weight: 500;">info@ryansrecruit.com</a>
</p>
<div class="form-help">We typically respond within 24 hours</div>
</div>
<div style="margin-bottom: 2rem;">
<h4 style="color: var(--secondary-color); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.75rem;">
<span style="font-size: 1.5rem;">📞</span> Phone
</h4>
<p style="color: var(--text-light); margin-bottom: 0;">
<a href="tel:+15551234567" style="color: var(--primary-color); font-weight: 500;">+1 (555) 123-4567</a>
</p>
<div class="form-help">Mon-Fri 9AM-6PM EST</div>
</div>
<div>
<h4 style="color: var(--secondary-color); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.75rem;">
<span style="font-size: 1.5rem;">🏢</span> Office Hours
</h4>
<p style="color: var(--text-light); margin-bottom: 0.5rem;">
Monday to Friday: 9:00 AM - 6:00 PM EST
</p>
<p style="color: var(--text-light);">
Saturday & Sunday: Closed
</p>
</div>
</div>
<div style="background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); padding: 2rem; border-radius: 0.5rem; color: white;">
<h4 style="color: white; margin-bottom: 1rem;">Why Choose Us?</h4>
<ul style="list-style: none;">
<li style="margin-bottom: 0.75rem;">✓ Experienced recruitment team</li>
<li style="margin-bottom: 0.75rem;">✓ Fast response times</li>
<li style="margin-bottom: 0.75rem;">✓ Personalized support</li>
<li style="margin-bottom: 0.75rem;">✓ Industry expertise</li>
<li>✓ Proven track record</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Ryans Recruit Firm</h3>
<p style="color: rgba(255, 255, 255, 0.8);">
Your trusted partner in career advancement and talent acquisition.
</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about.html">About Us</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/jobs.html">Job Listings</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>For Employers</h3>
<ul>
<li><a href="/contact.html">Post a Job</a></li>
<li><a href="/contact.html">Our Process</a></li>
<li><a href="/contact.html">Pricing</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact</h3>
<ul>
<li>Email: info@ryansrecruit.com</li>
<li>Phone: +1 (555) 123-4567</li>
<li>Hours: Mon-Fri 9AM-6PM EST</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2026 Ryans Recruit Firm. All rights reserved.</p>
</div>
</div>
</footer>
<script src="/js/main.js"></script>
</body>
</html>

617
public/css/styles.css Normal file
View File

@@ -0,0 +1,617 @@
/* AI Recruitment Site - Global Styles */
:root {
/* Ryan Brand Colors */
--primary-color: #2563EB; /* Ryan Blue */
--primary-dark: #1e40af;
--primary-light: #3b82f6;
--secondary-color: #1E293B; /* Dark */
--accent-color: #059669; /* Ryan Green */
--text-dark: #1E293B;
--text-light: #64748B; /* Gray */
--bg-light: #F8FAFC; /* Light */
--bg-white: #ffffff;
--border-color: #E2E8F0; /* Border */
--success: #059669; /* Ryan Green */
--warning: #F59E0B; /* Warning Orange */
--error: #DC2626; /* Error Red */
--info: #0EA5E9; /* Info Blue */
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
/* Spacing System - 8px base */
--spacing-1: 8px;
--spacing-2: 16px;
--spacing-3: 24px;
--spacing-4: 32px;
--spacing-5: 40px;
--spacing-6: 48px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background-color: var(--bg-light);
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
color: var(--secondary-color);
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }
p {
margin-bottom: 1rem;
color: var(--text-light);
}
a {
color: var(--primary-color);
text-decoration: none;
transition: color 0.2s;
}
a:hover {
color: var(--primary-dark);
}
/* Container */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.container-narrow {
max-width: 900px;
margin: 0 auto;
padding: 0 2rem;
}
/* Header & Navigation */
header {
background: var(--bg-white);
box-shadow: var(--shadow-sm);
position: sticky;
top: 0;
z-index: 1000;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
align-items: center;
}
.nav-links a {
color: var(--text-dark);
font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
color: var(--primary-color);
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: white;
padding: 5rem 0;
text-align: center;
}
.hero h1 {
color: white;
font-size: 3rem;
margin-bottom: 1rem;
}
.hero p {
color: rgba(255, 255, 255, 0.9);
font-size: 1.25rem;
margin-bottom: 2rem;
}
/* Buttons */
.btn {
display: inline-block;
padding: 0.75rem 1.5rem;
border: none;
border-radius: 0.5rem;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
text-align: center;
}
.btn-primary {
background: var(--primary-color);
color: white;
}
.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.btn-secondary {
background: var(--bg-white);
color: var(--primary-color);
border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
background: var(--primary-color);
color: white;
}
.btn-success {
background: var(--success);
color: white;
}
.btn-success:hover {
background: #059669;
}
.btn-danger {
background: var(--error);
color: white;
}
.btn-danger:hover {
background: #dc2626;
}
.btn-sm {
padding: 0.5rem 1rem;
font-size: 0.875rem;
}
.btn-lg {
padding: 1rem 2rem;
font-size: 1.125rem;
}
/* Cards */
.card {
background: var(--bg-white);
border-radius: 0.5rem;
padding: 2rem;
box-shadow: var(--shadow-md);
transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}
.card-header {
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 2px solid var(--border-color);
}
.card-title {
font-size: 1.5rem;
color: var(--secondary-color);
margin-bottom: 0.5rem;
}
.card-subtitle {
color: var(--text-light);
font-size: 0.875rem;
}
/* Grid System */
.grid {
display: grid;
gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
.grid-2, .grid-3, .grid-4 {
grid-template-columns: 1fr;
}
}
/* Sections */
section {
padding: 4rem 0;
}
.section-title {
text-align: center;
margin-bottom: 3rem;
}
.section-title h2 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.section-title p {
font-size: 1.125rem;
color: var(--text-light);
}
/* Forms */
.form-group {
margin-bottom: 1.5rem;
}
label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--text-dark);
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="file"],
select,
textarea {
width: 100%;
padding: 0.75rem;
border: 2px solid var(--border-color);
border-radius: 0.5rem;
font-size: 1rem;
transition: border-color 0.2s;
font-family: inherit;
}
input:focus,
select:focus,
textarea:focus {
outline: none;
border-color: var(--primary-color);
}
textarea {
resize: vertical;
min-height: 120px;
}
.form-error {
color: var(--error);
font-size: 0.875rem;
margin-top: 0.25rem;
}
.form-help {
color: var(--text-light);
font-size: 0.875rem;
margin-top: 0.25rem;
}
/* Job Listing */
.job-card {
background: var(--bg-white);
border-radius: 0.5rem;
padding: 2rem;
box-shadow: var(--shadow-md);
margin-bottom: 1.5rem;
transition: transform 0.2s, box-shadow 0.2s;
}
.job-card:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}
.job-header {
display: flex;
justify-content: space-between;
align-items: start;
margin-bottom: 1rem;
}
.job-title {
font-size: 1.5rem;
color: var(--secondary-color);
margin-bottom: 0.5rem;
}
.job-meta {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 1rem;
font-size: 0.875rem;
color: var(--text-light);
}
.job-meta-item {
display: flex;
align-items: center;
gap: 0.5rem;
}
.job-description {
color: var(--text-light);
margin-bottom: 1rem;
line-height: 1.6;
}
.job-requirements {
margin-bottom: 1rem;
}
.job-requirements h4 {
font-size: 1rem;
margin-bottom: 0.5rem;
color: var(--text-dark);
}
.job-requirements ul {
padding-left: 1.5rem;
color: var(--text-light);
}
.job-requirements li {
margin-bottom: 0.25rem;
}
/* Tags/Badges */
.tag {
display: inline-block;
padding: 0.25rem 0.75rem;
border-radius: 1rem;
font-size: 0.875rem;
font-weight: 600;
}
.tag-primary {
background: rgba(37, 99, 235, 0.1);
color: var(--primary-color);
}
.tag-success {
background: rgba(16, 185, 129, 0.1);
color: var(--success);
}
.tag-warning {
background: rgba(245, 158, 11, 0.1);
color: var(--warning);
}
.tag-error {
background: rgba(239, 68, 68, 0.1);
color: var(--error);
}
/* Stats */
.stat-card {
background: var(--bg-white);
border-radius: 0.5rem;
padding: 1.5rem;
box-shadow: var(--shadow-md);
text-align: center;
}
.stat-value {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.stat-label {
color: var(--text-light);
font-size: 0.875rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
/* Tables */
table {
width: 100%;
border-collapse: collapse;
background: var(--bg-white);
border-radius: 0.5rem;
overflow: hidden;
box-shadow: var(--shadow-md);
}
thead {
background: var(--bg-light);
}
th {
padding: 1rem;
text-align: left;
font-weight: 600;
color: var(--text-dark);
border-bottom: 2px solid var(--border-color);
}
td {
padding: 1rem;
border-bottom: 1px solid var(--border-color);
}
tr:last-child td {
border-bottom: none;
}
tr:hover {
background: var(--bg-light);
}
/* Alerts */
.alert {
padding: 1rem;
border-radius: 0.5rem;
margin-bottom: 1rem;
}
.alert-success {
background: rgba(16, 185, 129, 0.1);
color: var(--success);
border: 2px solid var(--success);
}
.alert-error {
background: rgba(239, 68, 68, 0.1);
color: var(--error);
border: 2px solid var(--error);
}
.alert-info {
background: rgba(37, 99, 235, 0.1);
color: var(--primary-color);
border: 2px solid var(--primary-color);
}
/* Footer */
footer {
background: var(--secondary-color);
color: white;
padding: 3rem 0 1rem;
margin-top: 4rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h3 {
color: white;
margin-bottom: 1rem;
}
.footer-section ul {
list-style: none;
}
.footer-section li {
margin-bottom: 0.5rem;
}
.footer-section a {
color: rgba(255, 255, 255, 0.8);
}
.footer-section a:hover {
color: white;
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.6);
}
/* Loading */
.loading {
display: inline-block;
width: 1rem;
height: 1rem;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: white;
animation: spin 0.6s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none; }
/* Responsive */
@media (max-width: 768px) {
.container {
padding: 0 1rem;
}
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
.nav-links {
gap: 1rem;
font-size: 0.875rem;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
.job-header {
flex-direction: column;
}
.footer-content {
grid-template-columns: 1fr;
}
}

243
public/index.html Normal file
View File

@@ -0,0 +1,243 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ryans Recruit Firm - Find Your Dream Job</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<header>
<nav class="container">
<div class="logo">Ryans Recruit Firm</div>
<ul class="nav-links">
<li><a href="/" class="active">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/jobs.html">Jobs</a></li>
<li><a href="/contact.html">Contact</a></li>
<li><a href="/admin/login.html" class="btn btn-primary btn-sm">Admin</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="container">
<h1>Your Career Success Is Our Mission</h1>
<p>Connecting talented professionals with leading companies worldwide</p>
<div style="display: flex; gap: 1rem; justify-content: center; margin-top: 2rem;">
<a href="/jobs.html" class="btn btn-primary btn-lg">Browse Jobs</a>
<a href="/contact.html" class="btn btn-secondary btn-lg">Get in Touch</a>
</div>
</div>
</section>
<section>
<div class="container">
<div class="section-title">
<h2>Why Choose Ryans Recruit Firm?</h2>
<p>We're committed to finding the perfect match for both candidates and employers</p>
</div>
<div class="grid grid-3">
<div class="card text-center">
<div style="font-size: 3rem; margin-bottom: 1rem;">🎯</div>
<h3>Targeted Matching</h3>
<p>Our advanced screening process ensures we match the right talent with the right opportunity, saving time and increasing success rates.</p>
</div>
<div class="card text-center">
<div style="font-size: 3rem; margin-bottom: 1rem;">🌍</div>
<h3>Global Network</h3>
<p>Access to positions across multiple industries and locations, from startups to Fortune 500 companies worldwide.</p>
</div>
<div class="card text-center">
<div style="font-size: 3rem; margin-bottom: 1rem;">🤝</div>
<h3>Personal Support</h3>
<p>Dedicated recruiters guide you through every step, from application to offer negotiation and beyond.</p>
</div>
<div class="card text-center">
<div style="font-size: 3rem; margin-bottom: 1rem;"></div>
<h3>Fast Process</h3>
<p>Streamlined recruitment process with quick turnaround times, getting you in front of hiring managers faster.</p>
</div>
<div class="card text-center">
<div style="font-size: 3rem; margin-bottom: 1rem;">💼</div>
<h3>Industry Experts</h3>
<p>Our team has deep expertise across technology, finance, healthcare, and more, understanding what companies need.</p>
</div>
<div class="card text-center">
<div style="font-size: 3rem; margin-bottom: 1rem;">🎓</div>
<h3>Career Coaching</h3>
<p>Free resume reviews, interview preparation, and career advice to help you land your dream role.</p>
</div>
</div>
</div>
</section>
<section style="background: var(--bg-white);">
<div class="container">
<div class="section-title">
<h2>Our Success Stories</h2>
<p>Hear from professionals who found their dream jobs through us</p>
</div>
<div class="grid grid-2">
<div class="card">
<p style="font-style: italic; color: var(--text-light); margin-bottom: 1rem;">
"Ryans Recruit Firm found me the perfect role in just two weeks. Their team understood exactly what I was looking for and matched me with a company that aligned with my career goals. Highly recommended!"
</p>
<div style="display: flex; align-items: center; gap: 1rem;">
<div style="width: 50px; height: 50px; border-radius: 50%; background: var(--primary-color); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700;">SJ</div>
<div>
<div style="font-weight: 600;">Sarah Johnson</div>
<div style="font-size: 0.875rem; color: var(--text-light);">Senior Software Engineer</div>
</div>
</div>
</div>
<div class="card">
<p style="font-style: italic; color: var(--text-light); margin-bottom: 1rem;">
"The personalized support I received was incredible. From resume refinement to interview coaching, they were with me every step of the way. I'm now working at my dream company!"
</p>
<div style="display: flex; align-items: center; gap: 1rem;">
<div style="width: 50px; height: 50px; border-radius: 50%; background: var(--accent-color); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700;">MC</div>
<div>
<div style="font-weight: 600;">Michael Chen</div>
<div style="font-size: 0.875rem; color: var(--text-light);">Product Manager</div>
</div>
</div>
</div>
<div class="card">
<p style="font-style: italic; color: var(--text-light); margin-bottom: 1rem;">
"As a hiring manager, I've worked with many recruiting firms, but Ryans stands out. They consistently deliver high-quality candidates who are well-screened and truly interested in our opportunities."
</p>
<div style="display: flex; align-items: center; gap: 1rem;">
<div style="width: 50px; height: 50px; border-radius: 50%; background: var(--success); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700;">EP</div>
<div>
<div style="font-weight: 600;">Emily Parker</div>
<div style="font-size: 0.875rem; color: var(--text-light);">HR Director</div>
</div>
</div>
</div>
<div class="card">
<p style="font-style: italic; color: var(--text-light); margin-bottom: 1rem;">
"After months of unsuccessful job hunting, Ryans helped me land a position that exceeded my salary expectations. Their expertise in negotiation made a huge difference!"
</p>
<div style="display: flex; align-items: center; gap: 1rem;">
<div style="width: 50px; height: 50px; border-radius: 50%; background: var(--warning); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700;">DK</div>
<div>
<div style="font-weight: 600;">David Kim</div>
<div style="font-size: 0.875rem; color: var(--text-light);">Data Scientist</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="section-title">
<h2>How It Works</h2>
<p>Getting started is simple and straightforward</p>
</div>
<div class="grid grid-4">
<div class="text-center">
<div style="width: 80px; height: 80px; border-radius: 50%; background: var(--primary-color); display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; font-weight: 700; margin: 0 auto 1rem;">1</div>
<h4>Browse Jobs</h4>
<p>Explore our curated job listings across various industries and locations.</p>
</div>
<div class="text-center">
<div style="width: 80px; height: 80px; border-radius: 50%; background: var(--primary-color); display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; font-weight: 700; margin: 0 auto 1rem;">2</div>
<h4>Submit Application</h4>
<p>Apply with your resume and let us know what you're looking for.</p>
</div>
<div class="text-center">
<div style="width: 80px; height: 80px; border-radius: 50%; background: var(--primary-color); display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; font-weight: 700; margin: 0 auto 1rem;">3</div>
<h4>Get Matched</h4>
<p>Our team reviews your profile and matches you with suitable opportunities.</p>
</div>
<div class="text-center">
<div style="width: 80px; height: 80px; border-radius: 50%; background: var(--primary-color); display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; font-weight: 700; margin: 0 auto 1rem;">4</div>
<h4>Start Your Journey</h4>
<p>Receive support throughout interviews and land your dream job!</p>
</div>
</div>
<div class="text-center" style="margin-top: 3rem;">
<a href="/jobs.html" class="btn btn-primary btn-lg">View Open Positions</a>
</div>
</div>
</section>
<section style="background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: white;">
<div class="container text-center">
<h2 style="color: white; margin-bottom: 1rem;">Ready to Take the Next Step?</h2>
<p style="color: rgba(255, 255, 255, 0.9); font-size: 1.125rem; margin-bottom: 2rem;">
Join thousands of professionals who have found their dream jobs through Ryans Recruit Firm
</p>
<div style="display: flex; gap: 1rem; justify-content: center;">
<a href="/jobs.html" class="btn btn-lg" style="background: white; color: var(--primary-color);">Browse Jobs</a>
<a href="/contact.html" class="btn btn-secondary btn-lg">Contact Us</a>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Ryans Recruit Firm</h3>
<p style="color: rgba(255, 255, 255, 0.8);">
Your trusted partner in career advancement and talent acquisition.
</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about.html">About Us</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/jobs.html">Job Listings</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>For Employers</h3>
<ul>
<li><a href="/contact.html">Post a Job</a></li>
<li><a href="/contact.html">Our Process</a></li>
<li><a href="/contact.html">Pricing</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact</h3>
<ul>
<li>Email: info@ryansrecruit.com</li>
<li>Phone: +1 (555) 123-4567</li>
<li>Hours: Mon-Fri 9AM-6PM EST</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2026 Ryans Recruit Firm. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>

92
public/jobs.html Normal file
View File

@@ -0,0 +1,92 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Listings - Ryans Recruit Firm</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<header>
<nav class="container">
<div class="logo">Ryans Recruit Firm</div>
<ul class="nav-links">
<li><a href="/">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/jobs.html" class="active">Jobs</a></li>
<li><a href="/contact.html">Contact</a></li>
<li><a href="/admin/login.html" class="btn btn-primary btn-sm">Admin</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="container">
<h1>Open Positions</h1>
<p>Discover your next opportunity with our curated job listings</p>
</div>
</section>
<section>
<div class="container">
<div id="loading" class="text-center" style="padding: 3rem 0;">
<div class="loading" style="display: inline-block; width: 3rem; height: 3rem; border: 4px solid rgba(37, 99, 235, 0.3); border-top-color: var(--primary-color); margin-bottom: 1rem;"></div>
<p style="color: var(--text-light);">Loading job listings...</p>
</div>
<div id="jobs-container">
<!-- Jobs will be loaded dynamically here -->
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Ryans Recruit Firm</h3>
<p style="color: rgba(255, 255, 255, 0.8);">
Your trusted partner in career advancement and talent acquisition.
</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about.html">About Us</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/jobs.html">Job Listings</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>For Employers</h3>
<ul>
<li><a href="/contact.html">Post a Job</a></li>
<li><a href="/contact.html">Our Process</a></li>
<li><a href="/contact.html">Pricing</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact</h3>
<ul>
<li>Email: info@ryansrecruit.com</li>
<li>Phone: +1 (555) 123-4567</li>
<li>Hours: Mon-Fri 9AM-6PM EST</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2026 Ryans Recruit Firm. All rights reserved.</p>
</div>
</div>
</footer>
<script src="/js/main.js"></script>
</body>
</html>

290
public/js/admin.js Normal file
View File

@@ -0,0 +1,290 @@
// Admin JavaScript for Ryans Recruit Firm
// Check authentication on all admin pages except login
if (!window.location.pathname.includes('login.html')) {
checkAuth();
}
async function checkAuth() {
try {
const response = await fetch('/api/admin/check');
const data = await response.json();
if (!data.loggedIn) {
window.location.href = '/admin/login.html';
return;
}
// Update admin name in header if exists
const adminNameEl = document.getElementById('admin-name');
if (adminNameEl && data.admin) {
adminNameEl.textContent = data.admin.fullName;
}
} catch (err) {
console.error('Auth check failed:', err);
window.location.href = '/admin/login.html';
}
}
// Login page handlers
if (window.location.pathname.includes('login.html')) {
checkFirstAdmin();
document.getElementById('login-form')?.addEventListener('submit', handleLogin);
}
async function checkFirstAdmin() {
try {
const response = await fetch('/api/admin/check-first');
const data = await response.json();
if (data.isFirstAdmin) {
document.getElementById('first-admin-notice').style.display = 'block';
document.getElementById('full-name-group').style.display = 'block';
document.querySelector('button[type="submit"]').textContent = 'Create Admin Account';
}
} catch (err) {
console.error('Error checking first admin:', err);
}
}
async function handleLogin(e) {
e.preventDefault();
const form = e.target;
const submitBtn = form.querySelector('button[type="submit"]');
const originalText = submitBtn.textContent;
submitBtn.disabled = true;
submitBtn.innerHTML = '<span class="loading"></span> Processing...';
const formData = new FormData(form);
const data = Object.fromEntries(formData);
try {
const response = await fetch('/api/admin/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(data)
});
const result = await response.json();
if (response.ok) {
showAlert('Login successful!', 'success');
setTimeout(() => window.location.href = '/admin/dashboard.html', 500);
} else {
showAlert(result.error || 'Login failed', 'error');
}
} catch (err) {
console.error('Login error:', err);
showAlert('Login failed. Please try again.', 'error');
} finally {
submitBtn.disabled = false;
submitBtn.textContent = originalText;
}
}
// Dashboard page
if (window.location.pathname.includes('dashboard.html')) {
loadDashboardStats();
}
async function loadDashboardStats() {
try {
const response = await fetch('/api/admin/stats');
const stats = await response.json();
document.getElementById('stat-new-applications').textContent = stats.new_applications || 0;
document.getElementById('stat-total-applications').textContent = stats.total_applications || 0;
document.getElementById('stat-total-applicants').textContent = stats.total_applicants || 0;
document.getElementById('stat-active-jobs').textContent = stats.active_jobs || 0;
if (stats.unread_messages > 0) {
document.getElementById('stat-unread-messages').textContent = stats.unread_messages;
document.getElementById('stat-unread-messages').parentElement.style.display = 'block';
}
} catch (err) {
console.error('Error loading stats:', err);
}
}
// Applications page
if (window.location.pathname.includes('applicants.html')) {
loadApplications();
}
async function loadApplications(filters = {}) {
const container = document.getElementById('applications-container');
const loading = document.getElementById('loading');
try {
const params = new URLSearchParams(filters);
const response = await fetch(`/api/admin/applications?${params}`);
const applications = await response.json();
if (loading) loading.style.display = 'none';
if (applications.length === 0) {
container.innerHTML = '<div class="text-center"><p>No applications found.</p></div>';
return;
}
container.innerHTML = `
<table>
<thead>
<tr>
<th>Applicant</th>
<th>Job</th>
<th>Experience</th>
<th>Applied</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
${applications.map(app => `
<tr>
<td>
<strong>${escapeHtml(app.full_name)}</strong><br>
<small>${escapeHtml(app.email)}</small>
</td>
<td>${escapeHtml(app.job_title || 'General Application')}</td>
<td>${app.years_of_experience || 'N/A'} years</td>
<td>${new Date(app.applied_at).toLocaleDateString()}</td>
<td><span class="tag tag-${getStatusColor(app.status)}">${escapeHtml(app.status)}</span></td>
<td>
<a href="/admin/applicants.html?id=${app.id}" class="btn btn-sm btn-primary">View</a>
<a href="/api/admin/applications/${app.id}/cv" class="btn btn-sm btn-secondary" target="_blank">CV</a>
</td>
</tr>
`).join('')}
</tbody>
</table>
`;
} catch (err) {
console.error('Error loading applications:', err);
if (loading) loading.style.display = 'none';
container.innerHTML = '<div class="alert alert-error">Failed to load applications</div>';
}
}
// Jobs management page
if (window.location.pathname.includes('jobs.html') && window.location.pathname.includes('admin')) {
loadAdminJobs();
}
async function loadAdminJobs() {
const container = document.getElementById('jobs-container');
const loading = document.getElementById('loading');
try {
const response = await fetch('/api/admin/jobs');
const jobs = await response.json();
if (loading) loading.style.display = 'none';
container.innerHTML = `
<div style="margin-bottom: 2rem;">
<button onclick="showJobForm()" class="btn btn-success">+ Create New Job</button>
</div>
<table>
<thead>
<tr>
<th>Title</th>
<th>Department</th>
<th>Location</th>
<th>Status</th>
<th>Created</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
${jobs.map(job => `
<tr>
<td><strong>${escapeHtml(job.title)}</strong></td>
<td>${escapeHtml(job.department || 'N/A')}</td>
<td>${escapeHtml(job.location || 'N/A')}</td>
<td><span class="tag ${job.is_active ? 'tag-success' : 'tag-error'}">${job.is_active ? 'Active' : 'Inactive'}</span></td>
<td>${new Date(job.created_at).toLocaleDateString()}</td>
<td>
<button onclick="editJob(${job.id})" class="btn btn-sm btn-primary">Edit</button>
<button onclick="toggleJobStatus(${job.id}, ${!job.is_active})" class="btn btn-sm btn-secondary">${job.is_active ? 'Deactivate' : 'Activate'}</button>
</td>
</tr>
`).join('')}
</tbody>
</table>
`;
} catch (err) {
console.error('Error loading jobs:', err);
if (loading) loading.style.display = 'none';
container.innerHTML = '<div class="alert alert-error">Failed to load jobs</div>';
}
}
async function toggleJobStatus(jobId, isActive) {
try {
const response = await fetch(`/api/admin/jobs/${jobId}`, {
method: 'PATCH',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ isActive })
});
if (response.ok) {
showAlert(`Job ${isActive ? 'activated' : 'deactivated'} successfully`, 'success');
loadAdminJobs();
} else {
showAlert('Failed to update job status', 'error');
}
} catch (err) {
console.error('Error updating job:', err);
showAlert('Failed to update job status', 'error');
}
}
// Logout
async function logout() {
try {
await fetch('/api/admin/logout', { method: 'POST' });
window.location.href = '/admin/login.html';
} catch (err) {
console.error('Logout error:', err);
window.location.href = '/admin/login.html';
}
}
// Utility functions
function escapeHtml(text) {
if (!text) return '';
const div = document.createElement('div');
div.textContent = text;
return div.innerHTML;
}
function getStatusColor(status) {
const colors = {
'new': 'primary',
'reviewing': 'warning',
'interview': 'info',
'hired': 'success',
'rejected': 'error'
};
return colors[status] || 'primary';
}
function showAlert(message, type = 'info') {
const alertDiv = document.createElement('div');
alertDiv.className = `alert alert-${type}`;
alertDiv.textContent = message;
alertDiv.style.position = 'fixed';
alertDiv.style.top = '20px';
alertDiv.style.right = '20px';
alertDiv.style.zIndex = '10000';
alertDiv.style.minWidth = '300px';
document.body.appendChild(alertDiv);
setTimeout(() => {
alertDiv.remove();
}, 5000);
}

201
public/js/main.js Normal file
View File

@@ -0,0 +1,201 @@
// Main JavaScript for Ryans Recruit Firm
// Load jobs on jobs.html page
if (window.location.pathname.includes('jobs.html')) {
loadJobs();
}
async function loadJobs() {
const jobsContainer = document.getElementById('jobs-container');
const loadingEl = document.getElementById('loading');
try {
const response = await fetch('/api/jobs');
const jobs = await response.json();
if (loadingEl) loadingEl.style.display = 'none';
if (jobs.length === 0) {
jobsContainer.innerHTML = '<div class="text-center"><p>No job openings at the moment. Check back soon!</p></div>';
return;
}
jobsContainer.innerHTML = jobs.map(job => `
<div class="job-card">
<div class="job-header">
<div>
<h3 class="job-title">${escapeHtml(job.title)}</h3>
<div class="job-meta">
<span class="job-meta-item">📍 ${escapeHtml(job.location || 'Not specified')}</span>
<span class="job-meta-item">💼 ${escapeHtml(job.employment_type || 'Full-time')}</span>
${job.salary_range ? `<span class="job-meta-item">💰 ${escapeHtml(job.salary_range)}</span>` : ''}
${job.department ? `<span class="tag tag-primary">${escapeHtml(job.department)}</span>` : ''}
</div>
</div>
</div>
<p class="job-description">${escapeHtml(job.description.substring(0, 200))}...</p>
<a href="/apply.html?job=${job.id}" class="btn btn-primary">Apply Now</a>
</div>
`).join('');
} catch (err) {
console.error('Error loading jobs:', err);
if (loadingEl) loadingEl.style.display = 'none';
jobsContainer.innerHTML = '<div class="alert alert-error">Failed to load job listings. Please try again later.</div>';
}
}
// Handle application form on apply.html
if (window.location.pathname.includes('apply.html')) {
loadJobDetails();
document.getElementById('application-form')?.addEventListener('submit', handleApplicationSubmit);
}
async function loadJobDetails() {
const urlParams = new URLSearchParams(window.location.search);
const jobId = urlParams.get('job');
if (!jobId) return;
try {
const response = await fetch(`/api/jobs/${jobId}`);
const job = await response.json();
document.getElementById('job-title').textContent = job.title;
document.getElementById('job-details').innerHTML = `
<p><strong>Location:</strong> ${escapeHtml(job.location)}</p>
<p><strong>Type:</strong> ${escapeHtml(job.employment_type)}</p>
${job.salary_range ? `<p><strong>Salary:</strong> ${escapeHtml(job.salary_range)}</p>` : ''}
<p><strong>Description:</strong></p>
<p>${escapeHtml(job.description)}</p>
`;
} catch (err) {
console.error('Error loading job details:', err);
}
}
async function handleApplicationSubmit(e) {
e.preventDefault();
const form = e.target;
const submitBtn = form.querySelector('button[type="submit"]');
const originalBtnText = submitBtn.textContent;
submitBtn.disabled = true;
submitBtn.innerHTML = '<span class="loading"></span> Submitting...';
const formData = new FormData(form);
try {
const response = await fetch('/api/apply', {
method: 'POST',
body: formData
});
const result = await response.json();
if (response.ok) {
showAlert('Application submitted successfully! We\'ll be in touch soon.', 'success');
form.reset();
setTimeout(() => window.location.href = '/jobs.html', 2000);
} else {
showAlert(result.error || 'Failed to submit application', 'error');
}
} catch (err) {
console.error('Error submitting application:', err);
showAlert('Failed to submit application. Please try again.', 'error');
} finally {
submitBtn.disabled = false;
submitBtn.textContent = originalBtnText;
}
}
// Handle contact form on contact.html
if (window.location.pathname.includes('contact.html')) {
document.getElementById('contact-form')?.addEventListener('submit', handleContactSubmit);
}
async function handleContactSubmit(e) {
e.preventDefault();
const form = e.target;
const submitBtn = form.querySelector('button[type="submit"]');
const originalBtnText = submitBtn.textContent;
submitBtn.disabled = true;
submitBtn.innerHTML = '<span class="loading"></span> Sending...';
const formData = new FormData(form);
const data = Object.fromEntries(formData);
try {
const response = await fetch('/api/contact', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(data)
});
const result = await response.json();
if (response.ok) {
showAlert('Message sent successfully! We\'ll get back to you soon.', 'success');
form.reset();
} else {
showAlert(result.error || 'Failed to send message', 'error');
}
} catch (err) {
console.error('Error sending message:', err);
showAlert('Failed to send message. Please try again.', 'error');
} finally {
submitBtn.disabled = false;
submitBtn.textContent = originalBtnText;
}
}
// Utility functions
function escapeHtml(text) {
const div = document.createElement('div');
div.textContent = text;
return div.innerHTML;
}
function showAlert(message, type = 'info') {
const alertDiv = document.createElement('div');
alertDiv.className = `alert alert-${type}`;
alertDiv.textContent = message;
alertDiv.style.position = 'fixed';
alertDiv.style.top = '20px';
alertDiv.style.right = '20px';
alertDiv.style.zIndex = '10000';
alertDiv.style.minWidth = '300px';
document.body.appendChild(alertDiv);
setTimeout(() => {
alertDiv.remove();
}, 5000);
}
// File input validation
document.addEventListener('DOMContentLoaded', () => {
const fileInputs = document.querySelectorAll('input[type="file"]');
fileInputs.forEach(input => {
input.addEventListener('change', (e) => {
const file = e.target.files[0];
if (file) {
const maxSize = 5 * 1024 * 1024; // 5MB
if (file.size > maxSize) {
showAlert('File size must be less than 5MB', 'error');
e.target.value = '';
return;
}
const allowedTypes = ['application/pdf', 'application/msword', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'];
if (!allowedTypes.includes(file.type)) {
showAlert('Only PDF, DOC, and DOCX files are allowed', 'error');
e.target.value = '';
return;
}
}
});
});
});

109
public/services.html Normal file
View File

@@ -0,0 +1,109 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Services - Ryans Recruit Firm</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<header>
<nav class="container">
<div class="logo">Ryans Recruit Firm</div>
<ul class="nav-links">
<li><a href="/">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/services.html" class="active">Services</a></li>
<li><a href="/jobs.html">Jobs</a></li>
<li><a href="/contact.html">Contact</a></li>
<li><a href="/admin/login.html" class="btn btn-primary btn-sm">Admin</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="container">
<h1>Our Services</h1>
<p>Comprehensive recruitment solutions tailored to your needs</p>
</div>
</section>
<section>
<div class="container">
<div class="grid grid-2">
<div class="card">
<h3>For Job Seekers</h3>
<ul style="line-height: 2; color: var(--text-light);">
<li>Career counseling and guidance</li>
<li>Resume review and optimization</li>
<li>Interview preparation and coaching</li>
<li>Salary negotiation support</li>
<li>Access to exclusive job opportunities</li>
<li>Long-term career development advice</li>
</ul>
</div>
<div class="card">
<h3>For Employers</h3>
<ul style="line-height: 2; color: var(--text-light);">
<li>Talent sourcing and screening</li>
<li>Comprehensive candidate assessment</li>
<li>Interview coordination</li>
<li>Background verification</li>
<li>Offer negotiation assistance</li>
<li>Post-placement follow-up</li>
</ul>
</div>
</div>
</div>
</section>
<section style="background: var(--bg-white);">
<div class="container">
<div class="section-title">
<h2>Industries We Serve</h2>
</div>
<div class="grid grid-3">
<div class="card"><h4>Technology</h4><p>Software, IT, Engineering</p></div>
<div class="card"><h4>Finance</h4><p>Banking, Insurance, Investment</p></div>
<div class="card"><h4>Healthcare</h4><p>Medical, Pharmaceutical, Biotech</p></div>
<div class="card"><h4>Marketing</h4><p>Digital, Traditional, Analytics</p></div>
<div class="card"><h4>Sales</h4><p>B2B, B2C, Enterprise</p></div>
<div class="card"><h4>Operations</h4><p>Supply Chain, Logistics, Management</p></div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Ryans Recruit Firm</h3>
<p style="color: rgba(255, 255, 255, 0.8);">Your trusted partner in career advancement and talent acquisition.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about.html">About Us</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/jobs.html">Job Listings</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact</h3>
<ul>
<li>Email: info@ryansrecruit.com</li>
<li>Phone: +1 (555) 123-4567</li>
<li>Hours: Mon-Fri 9AM-6PM EST</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2026 Ryans Recruit Firm. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>