38 lines
1.4 KiB
HTML
38 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||
<title>Heat Map – Fuego Heat Tracker</title>
|
||
<link rel="icon" href="/favicon.ico">
|
||
<link rel="stylesheet" href="/styles.css">
|
||
</head>
|
||
<body>
|
||
<header class="main-header">
|
||
<img src="/image/logo.png" alt="Amazon Logo" class="logo">
|
||
<span class="header-title">| Fuego – Heat Tracker</span>
|
||
<button class="nav-btn" onclick="location.href='/input.html'">Log Reading</button>
|
||
<button class="nav-btn" onclick="location.href='/heatmap.html'">Heat Map</button>
|
||
<button class="nav-btn" onclick="location.href='/trends.html'">Trends</button>
|
||
</header>
|
||
|
||
<div class="page-container heatmap">
|
||
<div id="heatmap-container">
|
||
<div class="map-svg-container" id="mapSvgContainer">
|
||
<!-- heatmap.js will inject an <svg> here and draw your dock-doors and areas -->
|
||
</div>
|
||
<!-- optional floor selector, if you have multiple floors -->
|
||
<div class="floor-selector">
|
||
<label><input type="radio" name="floor" value="1" checked> Floor 1</label>
|
||
<label><input type="radio" name="floor" value="2"> Floor 2</label>
|
||
<label><input type="radio" name="floor" value="3"> Floor 3</label>
|
||
<label><input type="radio" name="floor" value="4"> Floor 4</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<script src="/scripts/heatmap.js"></script>
|
||
</body>
|
||
</html>
|
||
|