Files
roast_command_center/public/forgot.html
snowspeeder 59645e59b5 Add green-bean inventory and cupping features
Ports inventory management and SCA-style cupping scoring from
hope_roaster: lot tracking with audit-logged consumption, cupping
sessions with server-authoritative scoring and a live radar chart,
and links from the planner (draw-from-lot, open-cupping-session).

Also fixes the Blend/Single-origin toggle layout, replaces tooltips
with an in-context "why" teaching layer, and stages the planner UI
into pre-roast vs. post-roast phases.
2026-07-30 14:47:15 -04:00

44 lines
1.4 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" />
<link rel="icon" href="/icon.svg" 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">
<span class="brand-mark" aria-hidden="true"></span>
<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"></script>
</body>
</html>