Files
roast_command_center/public/login.html
T

50 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>Log in — Roast Planner</title>
<link rel="stylesheet" href="/app.css?v=20260730-release2" />
<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>Log in</h1>
<div id="message" class="auth-message" role="alert"></div>
<form id="login-form">
<label
>Email
<input
class="field-input"
required
type="email"
name="email"
autocomplete="email"
/></label>
<label
>Password
<input
class="field-input"
required
type="password"
name="password"
autocomplete="current-password"
/></label>
<button class="primary-btn" type="submit">Log in</button>
</form>
<div class="auth-links">
<a href="/forgot">Forgot password?</a>
<a href="/signup">Create an account</a>
</div>
</section>
</main>
<script type="module" src="/js/login.js?v=20260730-release2"></script>
</body>
</html>