-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsales.html
62 lines (55 loc) · 2.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
<title></title>
</head>
<body>
<header><h1>Hourly Sales by Location</h1></header>
<main>
<!-- this is the first row of 3 lists -->
<section class="row">
<section>
<h3>Sales </h3>
<table class="myTable" id="sales">
</table>
</section>
</section>
<section class="row">
<form class="pure-form pure-form-stacked" id="makeNewStore">
<fieldset>
<legend>Add values for new stores below:</legend>
<div>
<label for="id">Enter the store id here:</label>
<input id="id-input" type="text" name="id" placeholder="ex: firstAndPike" required>
</div>
<div>
<label for="location">Enter the store name/location:</label>
<input id="location" type="text" name="location" placeholder="ex: First and Pike" required>
</div>
<div>
<label for="minCPH">Enter the minimum customers per hour:</label>
<input type="number" min="1" step="1" name="minCPH" placeholder="ex: 15" required>
</div>
<div>
<label for="maxCPH">Enter the maximum customers per hour:</label>
<input type="number" min="1" step="1" name="maxCPH" placeholder="ex: 300" required>
</div>
<div>
<label for="avgCPH">Enter the average cookies sold per customer at the store:</label>
<input type="number" min="1" step="1" name="avgCPH" placeholder="ex: 600" required>
</div>
<input class="pure-button pure-button-primary" type="submit" value="Add New Store">
</fieldset>
</form>
</section>
<div class="preFooter"></div>
</main>
<footer>
<script type="text/javascript" src="app.js"></script>
</footer>
</body>
</html>