61 lines
2.1 KiB
HTML
61 lines
2.1 KiB
HTML
<!-- public/trends.html -->
|
||
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||
<title>Trends – Fuego Heat Tracker</title>
|
||
<link rel="icon" href="/favicon.ico">
|
||
<link rel="stylesheet" href="/styles.css">
|
||
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
||
</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 trends">
|
||
<h1>Trends</h1>
|
||
|
||
<div class="trends-controls">
|
||
<input id="timeframe-slider" type="range" min="0" max="4" value="0" style="width:75%;">
|
||
<span id="timeframe-label" style="margin-left:1rem;"></span>
|
||
</div>
|
||
|
||
<div class="trends-metrics">
|
||
<label><input type="checkbox" name="metric" value="temperature" checked> Temperature</label>
|
||
<label><input type="checkbox" name="metric" value="humidity" checked> Humidity</label>
|
||
<label><input type="checkbox" name="metric" value="heatIndex" checked> Heat Index</label>
|
||
</div>
|
||
|
||
<div class="chart-container">
|
||
<canvas id="trend-chart"></canvas>
|
||
</div>
|
||
|
||
<div class="table-wrapper">
|
||
<table id="trends-table">
|
||
<thead>
|
||
<tr>
|
||
<th class="sortable">Date / Time</th>
|
||
<th class="sortable">Temperature (°F)</th>
|
||
<th class="sortable">Humidity (%)</th>
|
||
<th class="sortable">Heat Index (°F)</th>
|
||
<th class="sortable">Station/Dock Door</th>
|
||
<th class="sortable">Location</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody id="trends-table-body"></tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
<!--INITIAL_DATA-->
|
||
<script src="/scripts/trends.js"></script>
|
||
</body>
|
||
</html>
|
||
|