Files
aitbc/website/BrowserWallet/index.html
oib 15427c96c0 chore: update file permissions to executable across repository
- Change file mode from 644 to 755 for all project files
- Add chain_id parameter to get_balance RPC endpoint with default "ait-devnet"
- Rename Miner.extra_meta_data to extra_metadata for consistency
2026-03-06 22:17:54 +01:00

60 lines
1.8 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AITBC Browser Wallet - Redirecting...</title>
<script>
// Immediate redirect
window.location.replace('/docs/browser-wallet.html');
</script>
<noscript>
<meta http-equiv="refresh" content="0; url=/docs/browser-wallet.html">
</noscript>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
color: white;
}
.redirect-message {
text-align: center;
padding: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 16px;
backdrop-filter: blur(10px);
}
.spinner {
width: 50px;
height: 50px;
border: 4px solid rgba(255, 255, 255, 0.3);
border-top: 4px solid white;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto 20px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
a {
color: white;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="redirect-message">
<div class="spinner"></div>
<h1>AITBC Browser Wallet</h1>
<p>Redirecting to the installation page...</p>
<p>If you're not redirected automatically, <a href="/docs/browser-wallet.html">click here</a>.</p>
</div>
</body>
</html>