Spaces:
Runtime error
Runtime error
File size: 1,882 Bytes
20835e9 2113a1e 20835e9 54919c4 20835e9 |
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 37 38 39 40 41 42 43 44 45 46 47 48 49 |
<!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>
<li class="navbar__navigation-item"><a href="/login/" class="navbar__link">Login</a></li>
</ul>
</header>
<main class="main">
<h1 class="pagetitle">User Logout</h1>
<h2 class="pagesubtitle">Thanks for Visiting!</h2>
{% if message %}
<h2 class="pagesubtitle">{{ message }}</h2>
{% else %}
<h2 class="pagesubtitle">Hit submit below to log out of the system.</h2>
{% endif %}
<section>
<form class="form__logout" method="POST" enctype="application/x-www-form-urlencoded">
<button type="submit" class="form__submit">Submit</button>
</form>
<br>
<br>
</section>
<br>
<br>
</main>
<footer class="footer">
<ul class="footer__text">
<li class="footer__text-item">© 2024 Pathfinder</li>
</ul>
</footer>
</body>
</html>
|