- Add Turnstile script to frontend/index.html - Implement programmatic widget rendering in ContactPage - Add backend verification via Cloudflare API - Include client IP in verification request - Update CSP headers to allow Cloudflare resources - Add environment variable configuration for site and secret keys - Pass VITE_TURNSTILE_SITE_KEY to frontend container - Add validation and error handling for CAPTCHA tokens
43 lines
1.9 KiB
HTML
43 lines
1.9 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
|
|
<!-- PWA Meta Tags -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0" />
|
|
<meta name="description" content="P2P video exchange platform for dance event participants. Share videos securely with WebRTC." />
|
|
<meta name="theme-color" content="#6366f1" />
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" href="/icons/icon-192x192.png" />
|
|
|
|
<!-- iOS Safari PWA Meta Tags -->
|
|
<meta name="apple-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="spotlight" />
|
|
|
|
<!-- Apple Touch Icons -->
|
|
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png" />
|
|
|
|
<!-- iOS Splash Screens -->
|
|
<link rel="apple-touch-startup-image" href="/splash/iphone-x.png"
|
|
media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3)" />
|
|
<link rel="apple-touch-startup-image" href="/splash/iphone-xr.png"
|
|
media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2)" />
|
|
<link rel="apple-touch-startup-image" href="/splash/iphone-xsmax.png"
|
|
media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3)" />
|
|
<link rel="apple-touch-startup-image" href="/splash/iphone-8.png"
|
|
media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" />
|
|
|
|
<!-- Cloudflare Turnstile -->
|
|
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
|
|
|
|
<title>spotlight.cam - Dance Event Video Exchange</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|