-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsales.html
92 lines (84 loc) · 3.29 KB
/
sales.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="Images/salmonfavicon.png" rel="icon" type="image/png" />
<link rel="stylesheet" type="text/css" href="salesstyle.css" />
<title></title>
</head>
<body>
<header>
<ul class="nav-bar">
<li class="nav-bar-logo"><img src="Images/PatsLogo.png" </li>
<li class="nav-list-item"><a class="nav-item-link" href="index.html">Home</a></li>
<li class="nav-list-item"><a class="nav-item-link" href="#">Shop Online</a></li>
<li class="nav-list-item"><a class="nav-item-link" href="#locations">Locations</a></li>
</ul>
</header>
<form id="newLocation">
<fieldset>
<legend>NEW STORE LOCATION</legend>
<div>
<label for="newStoreName">New Store Name:</label>
<input id="storeName-input" type="text" name="newStoreName" required>
</div>
<div>
<label for="newOpenHour">Time New Store Will Open:</label>
<input type="number" min="1" step="1" name="newOpenHour" value="" placeholder="Example: Enter 6 for 6:00am" required>
</div>
<div>
<label for="newCloseHour">Time New Store Will Close:</label>
<input type="number" min="1" step="1" name="newCloseHour" placeholder="Example: Enter 20 for 8:00pm"value="" required>
</div>
<div>
<label for="newMinHourlyCustomers">Minimum Number of Customers Per Hour:</label>
<input id="input-minHourlyCustomers" type="number" min="1" step="1" name="newMinHourlyCustomers" value="" required>
</div>
<div>
<label for="newMaxHourlyCustomers">Maximum Number of Customers Per Hour:</label>
<input id="input-maxHourlyCustomers" type="number" min="1" step="1" name="newMaxHourlyCustomers" value="" required>
</div>
<div>
<label for="newAvgCookiesPerSale">Average Number of Cookies Per Sale:</label>
<input id="input-avgCookiesPerSale" type="number" min="1" step="1" value="" name="newAvgCookiesPerSale" required>
</div>
<input id="submit-button" type="submit" value="ADD NEW LOCATION">
</fieldset>
</form>
<h1>TOTAL SALES</h1>
<table id="table">
</table>
<footer>
<h2 id="locations">Locations</h2>
<div class="location">
<h3>1st and Pike</h3>
<p>Hours: 6:00am - 8:00pm</p>
<p>101 Pike St. <br> Seattle, WA</p>
</div>
<div class="location">
<h3>SeaTac Airport</h3>
<p>Hours: 6:00am - 8:00pm</p>
<p>Terminal 2 <br> Seattle, WA</p>
</div>
<div class="location">
<h3>Seattle Center</h3>
<p>Hours: 6:00am - 8:00pm</p>
<p>101 Queen Ann Ave. <br> Seattle, WA</p>
</div>
<div class="location">
<h3>Capitol Hill</h3>
<p>Hours: 6:00am - 8:00pm</p>
<p>101 Broadway St. <br> Seattle, WA</p>
</div>
<div class="location">
<h3>Alki</h3>
<p>Hours: 6:00am - 8:00pm</p>
<p>101 Alki Ave. <br> Seattle, WA</p>
</div>
<div class="contact">
<h3>[email protected]</h3>
</div>
</footer>
<script src="app.js" type="text/javascript"></script>
</body>
</html>