← back to NationalPaperHangers

views/public/book-notify-result.ejs

22 lines

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

<section class="book-page" style="max-width:680px;margin:0 auto;padding:48px 24px">
  <% if (ok) { %>
    <div class="callout" style="text-align:center">
      <h1 class="display-sm" style="margin:0 0 12px">You're on the list</h1>
      <p style="font-size:16px;line-height:1.55">We'll email <strong><%= email %></strong> the moment <strong><%= installer.business_name %></strong> claims their listing and turns on bookings on National Paper Hangers.</p>
      <p class="muted" style="margin-top:20px;font-size:13px">In the meantime, <a href="/find">browse studios with live calendars</a> if your project is on a deadline.</p>
      <a href="/installer/<%= installer.slug %>" class="btn btn-ghost btn-sm" style="margin-top:24px">← Back to <%= installer.business_name %>'s profile</a>
    </div>
  <% } else { %>
    <div class="callout" style="border-color:#dc2626">
      <h1 class="display-sm" style="margin:0 0 12px">Something needs fixing</h1>
      <p style="font-size:15px;line-height:1.55"><%= error %></p>
      <a href="/installer/<%= installer.slug %>/book" class="btn btn-primary" style="margin-top:16px">← Try again</a>
    </div>
  <% } %>
</section>

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