MorphGuard / templates /lead.html
juanquy's picture
Fix HTML and CSS linter errors and warnings
a1bfcdd
Raw
History Blame Contribute Delete
1.36 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>Request Access - MorphGuard Demo</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: 320px; box-sizing: border-box; }
input, button { width: 100%; padding: 0.5rem; margin: 0.5rem 0; border: none; border-radius: 4px; }
button { background: #10b981; color: #1f2937; font-weight: bold; cursor: pointer; }
.error { color: #f87171; margin-bottom: 1rem; }
a { color: #3b82f6; text-decoration: none; }
</style>
</head>
<body>
<div class="container">
<h2>Request Demo Access</h2>
{% if error %}<div class="error">{{ error }}</div>{% endif %}
<form method="POST">
<label>Name:<br><input type="text" name="name" value="{{ name|e }}" required></label>
<label>Email:<br><input type="email" name="email" value="{{ email|e }}" required></label>
<button type="submit">Request Access</button>
</form>
<p class="text-sm">Already have an account? <a href="{{ url_for('auth.login') }}">Login here</a>.</p>
</div>
</body>
</html>