26 lines
995 B
HTML
26 lines
995 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="styles.css">
|
|
<title>Heat Map</title>
|
|
</head>
|
|
<body>
|
|
<header class="main-header">
|
|
<img src="/images/logo.png" alt="Company Logo" class="logo">
|
|
<span class="header-title">Warehouse Heat Map</span>
|
|
<button class="nav-btn" onclick="window.location.href='/input.html'">Log Reading</button>
|
|
<button class="nav-btn" onclick="window.location.href='/heatmap.html'">Heat Map</button>
|
|
<button class="nav-btn" onclick="window.location.href='/trends.html'">Trends</button>
|
|
</header>
|
|
|
|
<div class="page-container">
|
|
<div id="heatmap-container"></div>
|
|
</div>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.3/leaflet.js"></script>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.3/leaflet.css"/>
|
|
<script src="scripts/heatmap.js"></script>
|
|
</body>
|
|
</html> |