temperature-alarm/frontend/home/index.html
2025-04-02 12:24:27 +02:00

86 lines
3.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Temperature-Alarm-Web</title>
<script defer src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/moment"></script>
<script defer src="https://cdn.jsdelivr.net/npm/chartjs-adapter-moment"></script>
<script defer type="module" src="/scripts/home.js"></script>
<link rel="stylesheet" href="/styles/common.css">
<link rel="stylesheet" href="/styles/home.css" />
<link rel="stylesheet" href="/styles/auth.css" />
</head>
<body>
<div class="topnav">
<a class="active" href="/home">Home</a>
<div style="display: flex; justify-content: flex-end;">
<a href="/devices">Devices</a>
<a href="/profile">Profile</a>
<span class="logout-container">
<img class="logout" src="/img/logout.png">
</span>
</div>
</div>
<div id="container">
<div class="chart-container">
<canvas id="chart" height="400"></canvas>
</div>
<div id="filters">
<div>
<div class="form-control">
<label for="device-selector">Select device</label>
<select id="device-selector"></select>
</div>
</div>
<div>
<div class="form-control">
<label>&nbsp;</label>
<div id="period-templates">
<div class="period-template last-x-days" data-days="0">Today</div>
<div class="period-template last-x-days" data-days="3">Last 3 days</div>
<div class="period-template last-x-days" data-days="7">Last week</div>
<div class="period-template" id="all-time">All time</div>
</div>
</div>
<div class="form-control">
<label for="period-start">Start</label>
<input id="period-start" type="datetime-local">
</div>
<div class="form-control">
<label for="period-end">End</label>
<input id="period-end" type="datetime-local">
</div>
</div>
</div>
<div id="table-wrapper">
<table>
<thead>
<tr>
<th>Temperature</th>
<th>Date</th>
<th>Time</th>
<th>Limits</th>
</tr>
</thead>
<tbody id="table-body"></tbody>
</table>
<div id="view-more">
&#9660; View more
(Showing <span id="shown-log-amount"></span>/<span id="total-log-amount"></span>)
</div>
</div>
</div>
<div id="error" class="error"></div>
</body>
</html>