← back to Ventura Claw Leads
views/public/contact-result.ejs
20 lines
<%- include('../partials/head', { title }) %>
<%- include('../partials/header') %>
<section class="long-form">
<% if (ok) { %>
<p class="kicker">Message sent</p>
<h1 class="display-sm">Your message is on its way to <%= business.business_name %>.</h1>
<p class="lede">We forwarded your note to the business directly. They'll reply to <strong><%= consumer_email %></strong> — usually within a business day.</p>
<p class="muted" style="margin-top:24px;font-size:13px">In the meantime, <a href="/find">browse other businesses</a> on Ventura Blvd.</p>
<a href="/business/<%= business.slug %>" class="btn btn-ghost btn-sm" style="margin-top:24px">← Back to <%= business.business_name %></a>
<% } else { %>
<p class="kicker">Almost there</p>
<h1 class="display-sm">Something needs fixing.</h1>
<p class="lede"><%= error %></p>
<a href="/business/<%= business.slug %>#contact" class="btn btn-primary" style="margin-top:16px">← Try again</a>
<% } %>
</section>
<%- include('../partials/footer') %>