-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (51 loc) · 1.66 KB
/
index.html
File metadata and controls
55 lines (51 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>BrewTrackr ☕</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="app">
<header>
<h1>BrewTrackr ☕</h1>
<p>Log your favorite brews & spots</p>
</header>
<main id="log-container">
<p class="empty">No brews logged yet. Hit the ➕ to get started!</p>
</main>
<button id="add-btn">➕</button>
<form id="brew-form" class="hidden">
<h2>New Brew</h2>
<input type="text" id="coffeeName" placeholder="Coffee Name" required />
<input type="text" id="shopName" placeholder="Shop or Brand" required />
<select id="brewMethod">
<option value="">Brew Method</option>
<option>Drip</option>
<option>Espresso</option>
<option>AeroPress</option>
<option>Pour-over</option>
<option>French Press</option>
</select>
<select id="roastLevel">
<option value="">Roast Level</option>
<option>Light</option>
<option>Medium</option>
<option>Dark</option>
</select>
<input type="number" id="rating" placeholder="Rating (1–10)" min="1" max="10" required />
<textarea id="notes" placeholder="Tasting notes, vibes, etc."></textarea>
<label class="toggle">
<input type="checkbox" id="wouldBuyAgain" />
Would Buy Again
</label>
<div class="actions">
<button type="submit">Save</button>
<button type="button" id="cancel">Cancel</button>
</div>
</form>
</div>
<script src="script.js"></script>
</body>
</html>