Files
veripath/web/cold-audit.html
T

76 lines
5.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Request Layer 1a Cold Audit | Digital Operations Partner</title>
<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;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/dist.css">
</head>
<body class="flex flex-col min-h-screen bg-slate-50">
<!-- Header -->
<header class="bg-white border-b border-slate-200 sticky top-0 z-50 shadow-rigor">
<nav class="max-w-6xl mx-auto px-4 py-4 flex justify-between items-center">
<a href="./index.html" class="font-bold text-xl tracking-tight text-slate-900">DOP<span class="text-dop-red">.</span></a>
<a href="./index.html" class="text-sm font-semibold text-slate-600 hover:text-dop-red transition">Home</a>
</nav>
</header>
<main class="flex-grow">
<section class="py-16 px-4 max-w-2xl mx-auto">
<h1 class="text-4xl font-bold mb-4 text-slate-950 text-center">Layer 1a: Cold Audit Intake</h1>
<p class="text-lg text-slate-600 mb-8 text-center">Free. No strings attached. We will analyze your AI visibility and customer path leakage.</p>
<form id="audit-form" class="bg-white border border-slate-200 rounded-lg p-8 shadow-rigor space-y-6">
<div>
<label for="biz-name" class="block text-sm font-medium text-slate-700 mb-1">Business Name</label>
<input type="text" id="biz-name" name="biz-name" required class="w-full px-4 py-2 border border-slate-300 rounded focus:ring-2 focus:ring-dop-red focus:border-transparent outline-none">
</div>
<div class="grid md:grid-cols-2 gap-6">
<div>
<label for="website" class="block text-sm font-medium text-slate-700 mb-1">Website URL</label>
<input type="url" id="website" name="website" required class="w-full px-4 py-2 border border-slate-300 rounded focus:ring-2 focus:ring-dop-red focus:border-transparent outline-none">
</div>
<div>
<label for="phone" class="block text-sm font-medium text-slate-700 mb-1">Primary Phone</label>
<input type="tel" id="phone" name="phone" required class="w-full px-4 py-2 border border-slate-300 rounded focus:ring-2 focus:ring-dop-red focus:border-transparent outline-none">
</div>
</div>
<div>
<label for="address" class="block text-sm font-medium text-slate-700 mb-1">Physical Address (or Service Area)</label>
<input type="text" id="address" name="address" required class="w-full px-4 py-2 border border-slate-300 rounded focus:ring-2 focus:ring-dop-red focus:border-transparent outline-none">
</div>
<div class="grid md:grid-cols-2 gap-6">
<div>
<label for="contact-name" class="block text-sm font-medium text-slate-700 mb-1">Contact Name</label>
<input type="text" id="contact-name" name="contact-name" required class="w-full px-4 py-2 border border-slate-300 rounded focus:ring-2 focus:ring-dop-red focus:border-transparent outline-none">
</div>
<div>
<label for="email" class="block text-sm font-medium text-slate-700 mb-1">Email Address</label>
<input type="email" id="email" name="email" required class="w-full px-4 py-2 border border-slate-300 rounded focus:ring-2 focus:ring-dop-red focus:border-transparent outline-none">
</div>
</div>
<div>
<label for="context" class="block text-sm font-medium text-slate-700 mb-1">Why do you suspect Silent Customer Loss?</label>
<textarea id="context" name="context" rows="4" class="w-full px-4 py-2 border border-slate-300 rounded focus:ring-2 focus:ring-dop-red focus:border-transparent outline-none" placeholder="e.g., 'ChatGPT recommends my competitor when I ask for plumbers in my city.'"></textarea>
</div>
<div class="pt-4 flex items-center justify-between">
<p class="text-xs text-slate-500">Your data is secure and only used for the audit protocol.</p>
<button type="submit" id="submit-btn" class="btn-primary">Initiate Audit</button>
</div>
<div id="form-status" class="hidden mt-4 p-4 rounded border text-sm"></div>
</form>
</section>
</main>
<footer class="bg-slate-950 text-slate-400 py-8 px-4 text-center border-t border-slate-800 mt-12">
<p class="text-sm font-mono">Digital Operations Partner &copy; 2026. Evidence-based growth.</p>
</footer>
<script src="./assets/js/main.js"></script>
</body>
</html>