← back to Ventura Claw Leads

views/admin/login.ejs

25 lines

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

<section class="long-form" style="max-width:420px">
  <p class="kicker">Business sign in</p>
  <h1 class="display-sm">Sign in to your dashboard.</h1>
  <p class="lede">Manage your listing, see leads, and update your subscription.</p>

  <% if (error) { %>
    <p class="callout" style="background:#fee2e2;border-left:3px solid #dc2626;padding:12px 16px;margin:16px 0;border-radius:4px"><%= error %></p>
  <% } %>

  <form method="post" action="/admin/login" style="margin-top:24px">
    <input type="hidden" name="_csrf" value="<%= csrfToken %>">
    <input type="hidden" name="next" value="<%= next %>">
    <label>Email<input type="email" name="email" required value="<%= email %>" autocomplete="username"></label>
    <label>Password<input type="password" name="password" required autocomplete="current-password"></label>
    <button type="submit" class="btn btn-primary btn-lg" style="margin-top:8px">Sign in</button>
  </form>

  <p class="muted" style="margin-top:24px;font-size:13px">Haven't claimed your listing yet? Find your business in the <a href="/find">directory</a> and click "Claim this listing" on the profile page.</p>
</section>

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