MorphGuard / templates /lead_submitted.html
juanquy's picture
Fix landing page redirect latency by using lightweight animated CSS background on HF spaces, and remove invalid nested button markup
9de415b
Raw
History Blame Contribute Delete
1.13 kB
<!DOCTYPE html>
<html lang="en" class="bg-gray-900">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Access Requested</title>
<style>
body { font-family: Arial, sans-serif; background: #1f2937; color: #e5e7eb; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; }
.container { background: #374151; padding: 2rem; border-radius: 8px; width: 360px; text-align: center; }
a { color: #3b82f6; text-decoration: none; }
button { margin-top: 1rem; padding: 0.5rem 1rem; background: #10b981; color: #1f2937; border: none; border-radius: 4px; cursor: pointer; }
</style>
</head>
<body>
<div class="container">
<h2>Thank You!</h2>
<p>Your request has been received.</p>
<p>We will review your access and notify you upon approval.</p>
<p><a href="{{ url_for('main.demo') }}" style="display: inline-block; margin-top: 1rem; padding: 0.5rem 1rem; background: #10b981; color: #1f2937; border-radius: 4px; font-weight: bold; text-decoration: none;">Enter MorphGuard Demo</a></p>
</div>
</body>
</html>