Release initial version supporting report-generation. Currently only through CLI.

This commit is contained in:
Fred Boniface
2025-07-10 00:17:34 +01:00
parent 84530f7a1f
commit bc642ce0a8
6 changed files with 68 additions and 92 deletions

View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Generate Report</title>
</head>
<body>
<h1>Generate A/C Fault Report</h1>
<p>This page is under development. For now, reports will be sent out through other means.</p>
<!--
<form action="/report/generate" method="GET">
<div>
<label for="start">Start Date</label>
<input type="date" id="start" name="start" required>
</div>
<div>
<label for="end">End Date</label>
<input type="date" id="end" name="end" required>
</div>
<button type="submit">Generate Report</button>
</form>
-->
</body>
</html>