<!doctype html>
<html lang="en">
<head>
<%- include('head', { title }) %>
</head>
<body class="portal-body">

<div class="portal-topbar">
  <a href="/" class="brand" style="font-size: 1rem;">
    <img src="/images/logo.png" alt="Kubera Wealth Management" style="height: 32px; width: 32px; object-fit: contain;" />
    Kubera Wealth Management
    <span class="portal-topbar__label">Founder Portal</span>
  </a>
  <nav class="portal-topbar__nav">
    <a href="/founder">Dashboard</a>
    <a href="/founder/account">Account</a>
    <a href="/" target="_blank">View site</a>
    <form action="/founder/logout" method="POST">
      <button class="btn btn-outline btn-sm" type="submit">Log Out</button>
    </form>
  </nav>
</div>

<main class="portal-main">
  <% if (flashSuccess && flashSuccess.length) { %>
    <% flashSuccess.forEach(function(msg) { %><div class="flash flash-success"><%= msg %></div><% }); %>
  <% } %>
  <% if (flashError && flashError.length) { %>
    <% flashError.forEach(function(msg) { %><div class="flash flash-error"><%= msg %></div><% }); %>
  <% } %>
