← back to Ventura Claw Leads

views/public/claim-result.ejs

20 lines

<%- include('../partials/head', { title }) %>
<%- include('../partials/header') %>

<section class="long-form" style="text-align:center">
  <% if (ok) { %>
    <p class="kicker">Check your email</p>
    <h1 class="display-sm">We sent a claim link to <strong><%= email %></strong>.</h1>
    <p class="lede" style="margin:0 auto">Click the link in that email within 24 hours to set a password and take ownership of <strong><%= business.business_name %></strong>'s Ventura Claw listing.</p>
    <p class="muted" style="margin-top:24px;font-size:13px">Didn't get it? Check spam, or email <a href="mailto:info@venturaclaw.com">info@venturaclaw.com</a>.</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">Email needed</h1>
    <p class="lede" style="margin:0 auto"><%= error %></p>
    <a href="/business/<%= business.slug %>#claim" class="btn btn-primary" style="margin-top:16px">← Try again</a>
  <% } %>
</section>

<%- include('../partials/footer') %>