HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/hyperflight/apps/inxpress/prev/2025-11-03/templates/base.html
<!doctype html>
<html lang="en-GB">   <!-- ensures DD/MM/YYYY in native date inputs -->
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <title>{% block title %}InXpress Apps{% endblock %}</title>

  <!-- Bootstrap 5 (CSS) -->
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">    

  <!-- Your overrides must come LAST -->
  <link rel="stylesheet" href="{{ url_for('static', filename='css/site.css') }}">
</head>
<body>

<nav class="navbar navbar-expand-lg navbar-light bg-light border-bottom">
<ul class="navbar-nav me-auto">
  <li class="nav-item">
    <a class="nav-link{{ ' active' if request.endpoint=='shipments_parsed' else '' }}"
       href="{{ url_for('shipments_parsed') }}">Shipments</a>
  </li>
  <li class="nav-item">
    <a class="nav-link{{ ' active' if request.endpoint=='invoices' else '' }}"
       href="{{ url_for('invoices') }}">Invoices</a>
  </li>
  <li class="nav-item">
    <a class="nav-link" href="{{ url_for('health') }}">Health</a>
  </li>
</ul>

{% if session.get('user') %}
<ul class="navbar-nav ms-auto">
  <li class="nav-item">
    <a class="nav-link small" href="{{ url_for('logout') }}">Logout</a>
  </li>
</ul>
{% endif %}

</nav>

<main class="container-fluid py-3">
  {% block content %}{% endblock %}
</main>

<!-- Bootstrap 5 (JS bundle) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>