Spaces:
Runtime error
Runtime error
| <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> | |