-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsales.html
97 lines (77 loc) · 2.43 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
93
94
95
96
97
<!-- daily sales projections, internal -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Sales Data</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>SALES INTERNAL</h1>
</header>
<main>
<h2>Cookies Sold Per Hour by Shop</h2>
<table style="width:100%" id="cookieTable">
<thead>
<tr>
<th></th>
<th>6AM</th>
<th>7AM</th>
<th>8AM</th>
<th>9AM</th>
<th>10AM</th>
<th>11AM</th>
<th>12PM</th>
<th>1PM</th>
<th>2PM</th>
<th>3PM</th>
<th>4PM</th>
<th>5PM</th>
<th>6PM</th>
<th>7PM</th>
<th>Total</th>
</tr>
</thead>
<tbody>
<!-- JS should populate here -->
</tbody>
</table>
<br>
<br>
<form id='new-shop'>
<fieldset>
<legend>Add a new shop location</legend>
<label for="name">City Name: </label>
<input type="text" id="name">
<br>
</fieldset>
<fieldset>
<legend>Shop Data</legend>
<label for="min">Minimum Customers Per Hour: </label>
<input type="number" id="min" min="0"><br>
<label for="max">Maximum Customers Per Hour: </label>
<input type="number" id="max"><br>
<label for="avg">Average Cookies Per Sale: </label>
<input type="number" id="avg" step="0.1"><br>
</fieldset>
<div>
<button type="reset" value="reset">Reset Form</button>
<button type="submit">Submit</button>
</div>
</form>
</main>
<footer>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</footer>
<script src="js/sales.js" async defer></script>
</body>
</html>