85 lines
3.5 KiB
PHP
85 lines
3.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>CodeScore - Candidate Analytics</title>
|
|
<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">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #f8f9fa;
|
|
}
|
|
.navbar {
|
|
box-shadow: 0 2px 4px rgba(0,0,0,.05);
|
|
}
|
|
.hero {
|
|
background: linear-gradient(135deg, #0d6efd, #0d6efd20);
|
|
padding: 4rem 0;
|
|
color: white;
|
|
}
|
|
.card {
|
|
transition: transform .2s;
|
|
}
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-white sticky-top">
|
|
<div class="container">
|
|
<a class="navbar-brand fw-bold" href="#">CodeScore</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<main>
|
|
<section class="hero text-center">
|
|
<div class="container">
|
|
<h1 class="display-4 fw-bold">Candidate Skill Analytics</h1>
|
|
<p class="lead col-md-8 mx-auto">Aggregate and analyze developer scores from top coding platforms to find the best talent, faster.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="py-5">
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<div class="card shadow-sm">
|
|
<div class="card-body p-5">
|
|
<h2 class="card-title text-center mb-4">Find a Candidate Profile</h2>
|
|
<form action="profile.php" method="GET">
|
|
<div class="mb-3">
|
|
<label for="handle" class="form-label">LeetCode Handle</label>
|
|
<div class="input-group">
|
|
<span class="input-group-text"><i class="bi bi-person"></i></span>
|
|
<input type="text" class="form-control form-control-lg" id="handle" name="handle" placeholder="e.g., awesome_coder_123" required>
|
|
</div>
|
|
</div>
|
|
<div class="d-grid">
|
|
<button type="submit" class="btn btn-primary btn-lg">Fetch Profile</button>
|
|
</div>
|
|
</form>
|
|
<div class="text-center mt-3">
|
|
<small class="text-muted">Support for other platforms coming soon!</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="text-center py-4 text-muted">
|
|
<div class="container">
|
|
<p>© <?php echo date("Y"); ?> CodeScore. All Rights Reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|