Files
garmin-coach-to-cal-sync/templates/login.html
2026-06-16 15:14:37 +02:00

23 lines
887 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Log In</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body class="auth-page">
<main class="auth-panel">
<div class="brand auth-brand"><span class="brand-mark"></span><span>Coach Clone</span></div>
<h1>Sign In</h1>
<p>Local single-user access for Garmin Coach cloning.</p>
{% if error %}<p class="alert">{{ error }}</p>{% endif %}
<form method="post" action="/login" class="stack">
<label>Username <input name="username" autocomplete="username" required></label>
<label>Password <input name="password" type="password" autocomplete="current-password" required></label>
<button type="submit">Log in</button>
</form>
</main>
</body>
</html>