Files
kin/server/public/index.html
Marcus Rehbock ac0b82e6a0
Some checks failed
Build & Release APK / build (push) Failing after 13s
Kin: personal relationships app — server (cadence/due/migrations) + Expo Android app
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 00:50:06 -07:00

35 lines
1.0 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Personal CRM</title>
<link rel="stylesheet" href="/styles.css" />
</head>
<body>
<header>
<h1>Personal CRM</h1>
<div class="stats" id="stats"></div>
<div class="controls">
<input id="search" type="search" placeholder="Search name or email…" autocomplete="off" />
<select id="tag"><option value="">All tags</option></select>
<select id="sort">
<option value="name">Sort: Name</option>
<option value="recent">Sort: Recently contacted</option>
<option value="stale">Sort: Out of touch</option>
</select>
<button id="add-btn" class="primary">+ Contact</button>
</div>
</header>
<main>
<ul id="list" class="list"></ul>
<section id="detail" class="detail">
<p class="empty">Select a contact, or add a new one.</p>
</section>
</main>
<script src="/app.js"></script>
</body>
</html>