← back to Ventura Claw Leads
views/public/unsubscribe.ejs
24 lines
<%- include('../partials/head', { title }) %>
<%- include('../partials/header') %>
<section class="long-form" style="text-align:center;max-width:560px">
<% if (ok) { %>
<p class="kicker">Unsubscribed</p>
<h1 class="display-sm">You're off the list.</h1>
<p class="lede" style="margin:0 auto"><strong><%= identifier %></strong> won't receive any further <%= campaign === 'lead_delivery' ? 'lead-delivery emails' : (campaign === 'claim_invite' ? 'claim invitations' : 'emails') %> from Ventura Claw.</p>
<p class="muted" style="margin-top:24px;font-size:13px">Changed your mind? Email <a href="mailto:info@venturaclaw.com">info@venturaclaw.com</a> to be re-subscribed.</p>
<p style="margin-top:24px"><a href="/" class="btn btn-ghost btn-sm">← Back to Ventura Claw</a></p>
<% } else { %>
<p class="kicker">Unsubscribe</p>
<h1 class="display-sm">We couldn't process that link.</h1>
<p class="lede" style="margin:0 auto"><%
if (reason === 'invalid') { %>The token is malformed or doesn't match a record we issued.<%
} else if (reason === 'no_token') { %>This link is missing its token. Use the unsubscribe link from a recent email.<%
} else { %>Something went wrong. Try the link from a recent email, or email <a href="mailto:info@venturaclaw.com">info@venturaclaw.com</a>.<%
} %></p>
<p style="margin-top:24px"><a href="/" class="btn btn-ghost btn-sm">← Back to Ventura Claw</a></p>
<% } %>
</section>
<%- include('../partials/footer') %>