-
Notifications
You must be signed in to change notification settings - Fork 0
/
sales.html
50 lines (45 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Pat's Salmon Cookies!</title>
<link rel="stylesheet" href="./stylesheet/style.css">
</head>
<body>
<header>
<h1>Welcome to Pat's Salmon Cookies!</h1>
<nav>
<a href="index.html">Home</a>
<a href="sales.html">Sales Data</a>
</nav>
</header>
<form id="newStoreForm">
<fieldset>
<legend>Add a new store to the table!</legend>
<label for="locationInput">Location Name:</label>
<input type="text" id="locationInput" name="location" required>
<br>
<label for="minCustomersInput">Minimum Customers Per Hour:</label>
<input type="number" id="minCustomersInput" name="minCustomers" required>
<br>
<label for="maxCustomersInput">Maximum Customers Per Hour:</label>
<input type="number" id="maxCustomersInput" name="maxCustomers" required>
<br>
<label for="avgCookiesInput">Average Cookies Per Sale:</label>
<input type="number" id="avgCookiesInput" name="avgCookies" step="0.1" required>
<br>
<button type="submit">Add Store</button>
</fieldset>
</form>
<main>
<table id="sales">
<thead id="salesTableHeader"></thead>
<tbody id="salesTableBody"> </tbody>
<tfoot id="salesTableFooter"></tfoot>
</table>
</main>
<script src="./Js/app.js"></script>
</body>
<footer>© 2023 Pat's Salmon Cookies</footer>
</html>