summaryrefslogtreecommitdiff
path: root/static/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/index.html')
-rw-r--r--static/index.html17
1 files changed, 1 insertions, 16 deletions
diff --git a/static/index.html b/static/index.html
index d0e0243..ae36a4f 100644
--- a/static/index.html
+++ b/static/index.html
@@ -33,29 +33,14 @@
<h3>Add Ingredient</h3>
<div class="form-row">
<div class="form-group"><label>Name</label><input type="text" id="ing-name" placeholder="e.g. Chicken Breast"></div>
- <div class="form-group"><label>Quantity</label><input type="number" id="ing-qty" step="0.1" placeholder="500"></div>
- <div class="form-group"><label>Unit</label><input type="text" id="ing-unit" placeholder="grams"></div>
- <div class="form-group"><label>Category</label>
- <select id="ing-category">
- <option value="">None</option>
- <option value="produce">Produce</option>
- <option value="protein">Protein</option>
- <option value="dairy">Dairy</option>
- <option value="pantry">Pantry</option>
- <option value="frozen">Frozen</option>
- <option value="bakery">Bakery</option>
- </select>
- </div>
- <div class="form-group"><label>Expiry Date</label><input type="date" id="ing-expiry"></div>
</div>
<div class="form-actions">
<button class="btn btn-primary" id="btn-save-ingredient">Save</button>
<button class="btn" id="btn-cancel-ingredient">Cancel</button>
</div>
</div>
- <div id="expiry-warning-banner" class="hidden"></div>
<table id="pantry-table">
- <thead><tr><th>Name</th><th>Quantity</th><th>Unit</th><th>Category</th><th>Expires</th><th>Actions</th></tr></thead>
+ <thead><tr><th>Name</th><th>Category</th><th>Actions</th></tr></thead>
<tbody id="pantry-tbody"></tbody>
</table>
<div id="pantry-empty" class="empty-state hidden">No ingredients yet. Add some to get started.</div>