-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsales.html
53 lines (40 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css" />
<title>Day 06 Lab</title>
</head>
<body>
<form class="storeLocationBuilder">
<div class="storeLocationBuilder">
<label for="storeLocation">Store Location</label>
<input name="storeLocation" type="text">
</div>
<div class="storeLocationBuilder">
<label for="minimumCustomers">Minimum Customers</label>
<input name="minimumCustomers" type="text">
</div>
<div class="storeLocationBuilder">
<label for="maximumCustomers">Maximum Customers</label>
<input name="maximumCustomers" type="text">
</div>
<div class="storeLocationBuilder">
<label for="averagePerHour">Average Per Hour</label>
<input name="averagePerHour" type="text">
</div>
<div class="storeLocationBuilder">
<button type="submit">Submit</button>
</div>
</form>
<nav>
<a href="./index.html">Home</a>
<a href="./sales.html">Sales</a>
</nav>
<h1>Daily Sales Reports</h1>
<section id="placeholder-Table">
</section>
<section id="store-Location-Hourly-Totals-Table"></section>
<script src="sales.js"></script>
</body>
<!-- Form syntax taken from MDN -->
</html>