<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title><%= typeof title !== 'undefined' ? title : 'WHM Monitor' %></title>
  <link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header class="topbar">
  <a class="brand" href="/">📡 WHM Monitor</a>
  <% if (typeof user !== 'undefined' && user) { %>
    <nav>
      <a href="/monitors/new">+ New Monitor</a>
      <a href="/whm/import">Import from WHM</a>
      <% if (user.is_admin) { %><a href="/users/new">+ New User</a><% } %>
      <form method="POST" action="/logout" style="display:inline">
        <button class="link-btn" type="submit">Logout (<%= user.email %>)</button>
      </form>
    </nav>
  <% } %>
</header>
<main class="container">