-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 2.39 KB
/
index.html
File metadata and controls
54 lines (48 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Security Headers -->
<meta name="referrer" content="strict-origin-when-cross-origin" />
<!-- PWA Meta Tags -->
<meta name="theme-color" content="#121212" />
<meta name="description" content="TrustVault - Enterprise-grade security-first credential manager with biometric authentication" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="TrustVault" />
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<title>TrustVault - Secure Credential Manager</title>
<!-- GitHub Pages SPA redirect script -->
<script>
// Handle GitHub Pages SPA routing by checking for redirected path
(function() {
var redirect = sessionStorage.redirect;
delete sessionStorage.redirect;
if (redirect && redirect !== location.href) {
history.replaceState(null, null, redirect);
}
})();
</script>
<style>
html, body { width: 100%; height: 100%; margin: 0; padding: 0; }
body { background-color: #121212; color: #FFFFFF; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Arial, sans-serif; }
#root { width: 100%; height: 100%; }
.loading-container { display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; flex-direction: column; }
.loading-spinner { border: 4px solid #4CAF50; border-top: 4px solid #121212; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; }
.loading-text { margin-top: 20px; color: #FFFFFF; font-size: 16px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
</style>
</head>
<body>
<div id="root">
<div class="loading-container">
<div class="loading-spinner"></div>
<div class="loading-text">Loading TrustVault...</div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>