Spaces:
Runtime error
Runtime error
File size: 2,948 Bytes
2b80df9 2113a1e 2b80df9 2113a1e 2b80df9 54919c4 2b80df9 | 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 50 51 52 53 54 55 56 57 58 59 60 | <!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 Registration</h1>
<h2 class="pagesubtitle">Welcome to Pathfinder!</h2>
{% if message %}
<h2 class="pagesubtitle">{{ message }}</h2>
{% else %}
<h2 class="pagesubtitle">Fill out the form below to register for an account</h2>
{% endif %}
<section>
<form class="form__login" method="POST">
<label for="username" class="form__login-label" style="color: #2c2161;">username:</label>
<input type="text" name="username" id="username" style="margin-bottom: 20px" class="form__input-field" />
<label for="password" class="form__login-label" style="color: #2c2161;">password:</label>
<input type="text" name="password" id="password" style="margin-bottom: 20px" class="form__input-field" />
<label for="email" class="form__login-label" style="color: #2c2161;">email:</label>
<input type="text" name="email" id="email" style="margin-bottom: 20px" class="form__input-field" />
<label for="email" class="form__login-label" style="color: #2c2161;">account type:</label>
<select name="account_type" id="account_type" style="margin-bottom: 20px" class="form__dropdown">
<option value="candidate">Candidate</option>
<option value="employer">Employer</option>
</select>
<br>
<br>
<button type="submit" class="form__submit">Submit</button>
</form>
<br>
<br>
<br>
<br>
</section>
</main>
<footer class="footer">
<ul class="footer__text">
<li class="footer__text-item">© 2024 Pathfinder</li>
</ul>
</footer>
</body>
</html> |