32 lines
1.3 KiB
HTML
32 lines
1.3 KiB
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>Log Reading</title>
|
|
</head>
|
|
<body>
|
|
<!-- Header -->
|
|
<header class="main-header">
|
|
<img src="/images/logo.png" alt="Company Logo" class="logo">
|
|
<span class="header-title">Warehouse Heat Logger</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">
|
|
<h1>Enter Trailer Reading</h1>
|
|
<form id="reading-form">
|
|
<input class="form-input" type="number" id="dockDoor" placeholder="Dock Door #" min="106">
|
|
<input class="form-input" type="datetime-local" id="timestamp">
|
|
<input class="form-input" type="number" id="temperature" step="0.1" placeholder="Temperature (°F)">
|
|
<input class="form-input" type="number" id="humidity" step="0.1" placeholder="Humidity (%)">
|
|
<button type="submit" class="big-button">Submit</button>
|
|
</form>
|
|
</div>
|
|
<script src="scripts/input.js"></script>
|
|
</body>
|
|
</html>
|