95d9d2f9a8
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
1.3 KiB
HTML
33 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>KeyAccess</title>
|
|
|
|
<base href="/"/>
|
|
<meta name="color-scheme" content="light"/>
|
|
<meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
|
|
<meta name="format-detection" content="telephone=no"/>
|
|
<meta name="msapplication-tap-highlight" content="no"/>
|
|
|
|
<link rel="icon" type="image/png" href="assets/icon/favicon.ico"/>
|
|
<!-- add to homescreen for ios -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
|
<meta name="mobile-web-app-capable" content="yes"/>
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
|
|
<link rel="stylesheet" href="styles.css"></head>
|
|
|
|
<body>
|
|
<script>
|
|
// Fix para talking idioma correto.
|
|
// Obtenha o idioma armazenado no storage
|
|
let storedLanguage = localStorage.getItem('key_language_current');
|
|
// Se o idioma existir, defina-o como o valor da tag 'lang'
|
|
if (storedLanguage) {
|
|
document.documentElement.setAttribute('lang', storedLanguage);
|
|
}
|
|
</script>
|
|
<app-root></app-root>
|
|
<script src="polyfills.js" type="module"></script><script src="vendor.js" type="module"></script><script src="main.js" type="module"></script></body>
|
|
</html>
|