114 lines
5.5 KiB
PHP
114 lines
5.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AI Resume & Job Match</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/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">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand fw-bold" href="#">
|
|
<i class="bi bi-robot me-2 primary-accent"></i>
|
|
ResumeWiz
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="container my-5">
|
|
<!-- Upload Section -->
|
|
<section id="upload-section" class="text-center">
|
|
<div class="card p-5 shadow-lg border-0 bg-gradient-primary text-white">
|
|
<h1 class="display-5 fw-bold">Get Your Resume ATS-Ready</h1>
|
|
<p class="lead mb-4">Upload your resume to see your ATS compatibility score and get actionable insights in seconds.</p>
|
|
<div class="col-lg-6 mx-auto">
|
|
<form id="upload-form">
|
|
<div class="mb-3">
|
|
<label for="resume-file" class="visually-hidden">Upload Resume</label>
|
|
<input class="form-control form-control-lg" type="file" id="resume-file" name="resume" required>
|
|
</div>
|
|
<div class="d-grid">
|
|
<button id="analyze-btn" type="submit" class="btn btn-primary-accent btn-lg">
|
|
<i class="bi bi-magic me-2"></i>Analyze My Resume
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Analysis Section (Initially Hidden) -->
|
|
<section id="analysis-section" style="display: none;">
|
|
<div class="text-center mb-5">
|
|
<h2 class="fw-bold">Your ATS Analysis Report</h2>
|
|
<p class="text-muted">Based on leading Applicant Tracking Systems.</p>
|
|
</div>
|
|
|
|
<div class="row g-4">
|
|
<!-- Score -->
|
|
<div class="col-lg-4">
|
|
<div class="card h-100 shadow-sm border-0 text-center p-4">
|
|
<div class="mx-auto">
|
|
<div class="score-circle mb-3">
|
|
<span id="ats-score">82</span>%
|
|
</div>
|
|
</div>
|
|
<h4 class="fw-bold mb-1">ATS Compatibility Score</h4>
|
|
<p class="text-success fw-semibold">Strong Candidate</p>
|
|
<p class="small text-muted">Your resume is well-structured for most modern ATS platforms.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- What's Working -->
|
|
<div class="col-lg-4">
|
|
<div class="card h-100 shadow-sm border-0">
|
|
<div class="card-header bg-success text-white">
|
|
<h5 class="mb-0 fw-semibold"><i class="bi bi-check-circle-fill me-2"></i>What's Working</h5>
|
|
</div>
|
|
<ul class="list-group list-group-flush">
|
|
<li class="list-group-item">Clear contact information</li>
|
|
<li class="list-group-item">Standard section headings (Experience, Education)</li>
|
|
<li class="list-group-item">Readable, standard font</li>
|
|
<li class="list-group-item">Good keyword density for your industry</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Areas for Improvement -->
|
|
<div class="col-lg-4">
|
|
<div class="card h-100 shadow-sm border-0">
|
|
<div class="card-header bg-warning text-dark">
|
|
<h5 class="mb-0 fw-semibold"><i class="bi bi-exclamation-triangle-fill me-2"></i>For Improvement</h5>
|
|
</div>
|
|
<ul class="list-group list-group-flush">
|
|
<li class="list-group-item">Action verbs could be stronger</li>
|
|
<li class="list-group-item">Missing a dedicated "Skills" section</li>
|
|
<li class="list-group-item">Dates are in an inconsistent format</li>
|
|
<li class="list-group-item">Lacks quantifiable achievements</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="text-center mt-5">
|
|
<button class="btn btn-secondary btn-lg" onclick="window.location.reload()">
|
|
<i class="bi bi-arrow-left me-2"></i>Start Over
|
|
</button>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="text-center text-muted py-4 mt-auto">
|
|
<p>© 2025 ResumeWiz. All Rights Reserved.</p>
|
|
</footer>
|
|
|
|
<script src="assets/js/main.js"></script>
|
|
</body>
|
|
</html> |