66 lines
3.4 KiB
HTML
66 lines
3.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Add a device · Moon Household Budget</title>
|
|
<script src="https://unpkg.com/@simplewebauthn/browser@9.0.1/dist/bundle/index.umd.min.js"></script>
|
|
<style>
|
|
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif; background:#FAF7F2;
|
|
display:flex; min-height:100vh; align-items:center; justify-content:center; margin:0; color:#3A3330; }
|
|
.card { background:#fff; border:1px solid #EDE8E2; border-radius:16px; padding:2rem; max-width:380px;
|
|
width:90%; text-align:center; box-shadow:0 4px 16px rgba(80,60,50,0.08); }
|
|
h1 { font-size:1.25rem; margin:0 0 .25rem; }
|
|
p.sub { color:#7A6E68; margin:0 0 1.25rem; font-size:.95rem; }
|
|
input { width:100%; box-sizing:border-box; padding:.7rem; border:1px solid #cfcfd4; border-radius:10px;
|
|
font:inherit; margin-bottom:.6rem; }
|
|
button { background:#4338ca; color:#fff; border:0; border-radius:10px; padding:.8rem 1.2rem;
|
|
font:inherit; font-weight:600; cursor:pointer; width:100%; }
|
|
button:disabled { opacity:.5; }
|
|
.msg { min-height:1.2rem; margin-top:.9rem; font-size:.9rem; }
|
|
.err { color:#C57A6E; } .ok { color:#5A9E68; }
|
|
a { color:#4338ca; font-size:.85rem; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<h1>🌙 Add this device</h1>
|
|
<p class="sub">Create a passkey (Touch ID / Face ID / security key) for this device.</p>
|
|
<input id="label" placeholder="Device name — e.g. Tony's iPhone" autocomplete="off">
|
|
{% if needs_code %}<input id="code" type="password" placeholder="Enrollment code" autocomplete="off">{% endif %}
|
|
<button id="enroll">🔑 Create passkey</button>
|
|
<div class="msg" id="msg"></div>
|
|
<p style="margin-top:1.25rem;"><a href="/login">Back to sign in</a></p>
|
|
</div>
|
|
<script>
|
|
const { startRegistration } = SimpleWebAuthnBrowser;
|
|
const msg = document.getElementById('msg');
|
|
const btn = document.getElementById('enroll');
|
|
btn.onclick = async () => {
|
|
btn.disabled = true; msg.className = 'msg'; msg.textContent = 'Follow your device prompt…';
|
|
const label = document.getElementById('label').value || 'Device';
|
|
const codeEl = document.getElementById('code');
|
|
const code = codeEl ? codeEl.value : undefined;
|
|
try {
|
|
const begin = await fetch('/auth/register/begin', {
|
|
method: 'POST', headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ label, code }),
|
|
});
|
|
if (!begin.ok) { msg.className = 'msg err'; msg.textContent = 'Not allowed to enroll (check the code).'; btn.disabled = false; return; }
|
|
const opts = await begin.json();
|
|
const attestation = await startRegistration(opts);
|
|
const res = await fetch('/auth/register/complete', {
|
|
method: 'POST', headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify(attestation),
|
|
});
|
|
const data = await res.json();
|
|
if (data.ok) { msg.className = 'msg ok'; msg.textContent = '✓ Passkey created! Redirecting…'; setTimeout(() => window.location = '/', 900); }
|
|
else { msg.className = 'msg err'; msg.textContent = 'Failed: ' + (data.error || 'try again'); btn.disabled = false; }
|
|
} catch (e) {
|
|
msg.className = 'msg err'; msg.textContent = 'Failed: ' + e.message; btn.disabled = false;
|
|
}
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|