<% title = 'Login — WHM Monitor' %>
<%- include('_header', { user: null }) %>

<div class="card auth-card">
  <h1>Sign in</h1>
  <% if (error) { %><p class="error"><%= error %></p><% } %>
  <form method="POST" action="/login">
    <label>Email
      <input type="email" name="email" required autofocus>
    </label>
    <label>Password
      <input type="password" name="password" required>
    </label>
    <button type="submit">Login</button>
  </form>
</div>

<%- include('_footer') %>