bae705aa97
- 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
32 lines
879 B
HTML
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>
|