<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>My Bookings</title>
</head>
<body>
  <h1>Your Bookings</h1>
  <table>
    <thead>
      <tr>
        <th>Booking ID</th>
        <th>Tour Title</th>
        <th>Booking Date</th>
        <th>Status</th>
      </tr>
    </thead>
    <tbody>
      <% bookings.forEach(booking => { %>
        <tr>
          <td><%= booking.booking_id %></td>
          <td><%= booking.tour_title %></td>
          <td><%= booking.booking_date %></td>
          <td><%= booking.status %></td>
        </tr>
      <% }) %>
    </tbody>
  </table>
</body>
</html>