{% extends 'base.html' %}
{% block title %}You're on the list — AgentForms{% endblock %}
{% block head_extra %}
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400&display=swap" rel="stylesheet">
<style nonce="{{ csp_nonce }}">
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #0a0a0f;
--bg-card: #12121a;
--text: #e4e4e7;
--text-muted: #71717a;
--accent: #3b82f6;
--border: #27272a;
--success: #10b981;
--font: 'Inter', system-ui, -apple-system, sans-serif;
}
body {
font-family: var(--font);
background: var(--bg);
color: var(--text);
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 24px;
}
.card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 48px 40px;
max-width: 440px;
width: 100%;
text-align: center;
}
.check {
width: 56px; height: 56px; border-radius: 50%;
background: rgba(16, 185, 129, 0.15);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 24px;
font-size: 28px; color: var(--success);
}
h1 {
font-size: 24px; font-weight: 700; color: #fff;
margin-bottom: 12px; letter-spacing: -0.02em;
}
p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; }
a {
display: inline-block; padding: 10px 24px;
background: var(--accent); color: #fff; text-decoration: none;
border-radius: 8px; font-size: 14px; font-weight: 600;
transition: background 0.15s;
}
a:hover { background: #2563eb; }
.sub { margin-top: 20px; font-size: 13px; color: var(--text-muted); }
</style>
{% endblock %}
{% block content %}
<div class="card">
<div class="check">✓</div>
<h1>You're on the list</h1>
<p>We'll email you the moment AgentForms launches. Early signups get extended free tier benefits.</p>
<a href="/">Back to AgentForms</a>
<div class="sub">Form infrastructure for AI agents</div>
</div>
{% endblock %}