calorie-ai-android/web/public/login.html
Daniel f57c04c989
All checks were successful
Android CI / build (push) Successful in 31s
Web CI / test (push) Successful in 46s
Add web auth and app navigation
2026-05-19 17:59:02 +02:00

29 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sign in - Calorie AI</title>
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="/styles.css">
</head>
<body class="login-body">
<main class="login-shell">
<section class="login-brand">
<p class="eyebrow">Private nutrition console</p>
<h1>Calorie AI</h1>
<p>Protected meal logging for calories, macros, fruit, vegetables, and AI image estimates.</p>
</section>
<form id="loginForm" class="login-card">
<span class="brand-mark">CA</span>
<h2>Sign in to Calorie AI</h2>
<p class="muted">Use the local web credentials configured on this host.</p>
<label>Username<input id="username" autocomplete="username" value="admin"></label>
<label>Password<input id="password" type="password" autocomplete="current-password" autofocus></label>
<button type="submit">Sign in</button>
<p id="loginStatus" class="status"></p>
</form>
</main>
<script src="/login.js"></script>
</body>
</html>