Initial commit
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
72
nginx/html/log.html
Normal file
72
nginx/html/log.html
Normal file
@@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Log Eggs — Eggtracker</title>
|
||||
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="nav">
|
||||
<a class="nav-brand" href="/">🥚 <span>Eggtracker</span></a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="/">Dashboard</a></li>
|
||||
<li><a href="/log">Log Eggs</a></li>
|
||||
<li><a href="/history">History</a></li>
|
||||
<li><a href="/flock">Flock</a></li>
|
||||
<li><a href="/budget">Budget</a></li>
|
||||
<li><a href="/summary">Summary</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<main class="container">
|
||||
<h1>Log Eggs</h1>
|
||||
|
||||
<div class="card">
|
||||
<div id="msg" class="message"></div>
|
||||
<form id="log-form">
|
||||
<div class="form-grid">
|
||||
<div class="form-group">
|
||||
<label for="date">Date</label>
|
||||
<input type="date" id="date" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="eggs">Eggs Collected</label>
|
||||
<input type="number" id="eggs" min="0" required placeholder="0">
|
||||
</div>
|
||||
<div class="form-group span-full">
|
||||
<label for="notes">Notes (optional)</label>
|
||||
<textarea id="notes" placeholder="Anything worth noting…"></textarea>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" class="btn btn-primary">Save Entry</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="section-header">
|
||||
<h2>Recent Entries</h2>
|
||||
</div>
|
||||
|
||||
<div class="table-wrap">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
<th>Eggs</th>
|
||||
<th>Notes</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="recent-body">
|
||||
<tr class="empty-row"><td colspan="3">Loading…</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script src="/js/api.js"></script>
|
||||
<script src="/js/log.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user