06/16 Phase 6 (continue)

This commit is contained in:
2026-06-17 17:06:43 -04:00
parent 479afde2fa
commit 68a842d6b6
26 changed files with 1027 additions and 61 deletions
+98
View File
@@ -0,0 +1,98 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Register</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<header class="site-header">
<div class="wrap">
<a class="brand" href="/">Classifieds</a>
<nav class="nav">
<a href="/listings">Browse</a>
<a href="/pricing">Pricing</a>
<a href="/auth/login">Sign in</a>
<a class="btn" href="/auth/register">Register</a>
<span class="langs">
<a href="/lang/en"
class="on">EN</a>
<a href="/lang/vi"
class="">VI</a>
<a href="/lang/es"
class="">ES</a>
</span>
</nav>
</div>
</header>
<main class="wrap">
<div class="flashes">
<div class="flash flash-danger">Registration is currently closed.</div>
</div>
<div class="card narrow">
<h2>Create account</h2>
<form method="post" novalidate>
<input id="csrf_token" name="csrf_token" type="hidden" value="IjJhYTQ1YWIxODI1YjQ2MzIxZmUwYmZiMWUwOTk1ZDdlZGI5ZWU2YjMi.ajG0hQ.cYOQILpu4BMWqB_IJXUSqljcaJM">
<div class="field">
<label for="display_name">Display name</label>
<input class="input" id="display_name" maxlength="80" minlength="2" name="display_name" required type="text" value="Nobody">
</div>
<div class="field">
<label for="email">Email</label>
<input class="input" id="email" maxlength="255" name="email" required type="text" value="nobody@example.com">
</div>
<div class="field">
<label for="password">Password</label>
<input class="input" id="password" maxlength="128" minlength="8" name="password" required type="password" value="">
</div>
<div class="field">
<label for="confirm">Confirm password</label>
<input class="input" id="confirm" name="confirm" required type="password" value="">
</div>
<input class="btn" id="submit" name="submit" type="submit" value="Create account">
</form>
<p class="muted"><a href="/auth/login">Already have an account? Sign in</a></p>
</div>
</main>
<footer class="site-footer">
<div class="wrap">© 2025 Classifieds · <a href="/sponsors">Sponsors</a></div>
</footer>
</body>
</html>