Spaces:
Runtime error
Runtime error
File size: 1,488 Bytes
2f1b978 0726b70 2f1b978 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link rel="stylesheet" href="/static/styles.css">
</head>
<body>
<header class="navbar">
<div class="navbar__brand">
<img src="/static/PF.png" class="navbar__logo" alt="Pathfinder logo" />
<a href="/" class="navbar__logo">Pathfinder</a>
</div>
<ul class="navbar__navigation">
<li class="navbar__navigation-item"><a href="/explore-job-neighborhoods/" class="navbar__link">Explore Job Neighborhoods</a></li>
<li class="navbar__navigation-item"><a href="/find-my-match/" class="navbar__link">Find My Match</a></li>
<li class="navbar__navigation-item"><a href="/find-my-hire/" class="navbar__link">Find My Next Hire</a></li>
</ul>
</header>
<main class="main">
<h1 class="pagetitle">Matching Candidates</h1>
<h2 class="pagesubtitle">We're sorry! This page is currently under construction.</h2>
<h2 class="pagesubtitle">Please check back soon to get candidates who are a great match for your {{ jobselection }} role!</h2>
<br>
<br>
</main>
<footer class="footer">
<ul class="footer__text">
<li class="footer__text-item">© 2023 Pathfinder</li>
</ul>
</footer>
</body>
</html>
|