-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhostParty.html
65 lines (63 loc) · 2.5 KB
/
hostParty.html
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
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image.png" href="/assets/favicon.png">
<link rel="stylesheet" href="styles.css">
<script src="hostParty.js" defer></script>
<title>Pour Taste</title>
</head>
<body>
<header>
<h1>Pour Taste</h1>
<nav>
<button class="user-page">ACCOUNT</button>
<button class="see-results">RESULTS</button>
<button class="total-scores">TOTAL SCORES</button>
</nav>
</header>
<main>
<section class="party-details">
<h3 class="party-date"></h3>
<h3 class="party-location"></h3>
<h3 class="party-time"></h3>
<h3 class="party-host"></h3>
<h3 class="party-id"></h3>
<div>
<button class="add-a-wine">ADD A WINE</button>
<button class="party-status"></button>
</div>
</section>
<section class="rate-wines">
</section>
<p class="rate-wine-errors"></p>
<section class="hidden">
<form class="add-wine">
<label for="wine-brand" class="hidden">Brand:</label>
<input type="text" name="brand" id="wine-brand" placeholder="BRAND">
<label for="wine-name" class="hidden">Wine Name:</label>
<input type="text" name="name" id="wine-name" placeholder="NAME">
<label for="wine-year" class="hidden">Year:</label>
<input type="number" name="year" id="wine-year" placeholder="YEAR">
<label for="wine-variety" class="hidden">Variety:</label>
<input type="text" name="variety" id="wine-variety" placeholder="TYPE Pinot Noir, Cabernet..">
<label for="wine-type" class="hidden">Type:</label>
<select name="wine_type" id="wine-type">
<option>White</option>
<option>Red</option>
<option>Sparkling</option>
<option>Rose</option>
<option>Dessert</option>
</select>
<p class="add-errors"></p>
<input type="submit" value="ADD">
</form>
</section>
</main>
<footer class="user-footer">
<button class="delete-party">DELETE PARTY</button>
</footer>
</body>
</html>