mirror of
https://github.com/kccleoc/seedpgp-web.git
synced 2026-03-07 01:47:52 +08:00
32 lines
1008 B
HTML
32 lines
1008 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>SeedPGP v__APP_VERSION__</title>
|
|
<!-- Content Security Policy: Prevent XSS, malicious extensions, and external script injection -->
|
|
<meta http-equiv="Content-Security-Policy" content="
|
|
default-src 'none';
|
|
script-src 'self' 'wasm-unsafe-eval';
|
|
style-src 'self' 'unsafe-inline';
|
|
img-src 'self' data:;
|
|
connect-src 'none';
|
|
form-action 'none';
|
|
frame-ancestors 'none';
|
|
base-uri 'self';
|
|
upgrade-insecure-requests;
|
|
block-all-mixed-content
|
|
" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta http-equiv="X-Frame-Options" content="DENY" />
|
|
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
|
|
<meta name="referrer" content="no-referrer" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
|
|
</html> |