Test and deploy / test-and-deploy (push) Successful in 59s
Co-Authored-By: Claude Fable 5 <[email protected]>
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Reset your password — Roast Planner</title>
|
|
<link rel="stylesheet" href="/app.css?v=__ASSET_VERSION__" />
|
|
<link rel="icon" href="/icon.svg?v=__ASSET_VERSION__" type="image/svg+xml" />
|
|
<meta name="theme-color" content="#A8481A" />
|
|
</head>
|
|
<body>
|
|
<main class="auth-page">
|
|
<section class="panel-card auth-card">
|
|
<div class="auth-brand">
|
|
<img class="brand-mark" src="/brand-mark.svg?v=__ASSET_VERSION__" alt="" aria-hidden="true" />
|
|
<strong>Roast Planner</strong>
|
|
</div>
|
|
<h1>Forgot your password?</h1>
|
|
<p class="lede">
|
|
Enter your account email and we'll send a link to reset your
|
|
password.
|
|
</p>
|
|
<div id="message" class="auth-message" role="alert"></div>
|
|
<form id="forgot-form">
|
|
<label
|
|
>Email
|
|
<input
|
|
class="field-input"
|
|
required
|
|
type="email"
|
|
name="email"
|
|
autocomplete="email"
|
|
/></label>
|
|
<button class="primary-btn" type="submit">Send reset link</button>
|
|
</form>
|
|
<div class="auth-links">
|
|
<a href="/login">Back to log in</a>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
<script type="module" src="/js/forgot.js?v=__ASSET_VERSION__"></script>
|
|
</body>
|
|
</html>
|