Files
boc/aamos-ledger/ui/index.html
T
Bernt bae705aa97 ARCHITECTURE: NFC roadmap, edge AI, audit logging
- Add NFC ePassport roadmap (ICAO 9303, eIDAS)
- Add TensorFlow.js edge face detection (BlazeFace)
- Add structured audit logger (GDPR-compliant)
- Risk scoring support

Part of KYC Apple Native UX v1.1.0
2026-06-29 16:24:48 +00:00

32 lines
879 B
HTML

<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="theme-color" content="#F8F7F5">
<title>LandveX Finance</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div id="app">
<div id="loading">Laddar LandveX Finance…</div>
</div>
<!-- Auth check -->
<script>
(function() {
const token = localStorage.getItem('lv_token');
if (!token) {
window.location.href = '/login?return=' + encodeURIComponent(window.location.pathname);
return;
}
})();
</script>
<!-- Core modules -->
<script type="module" src="js/app.js"></script>
</body>
</html>