-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsales.html
41 lines (32 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- <link rel="stylesheet" type="text/css" href="reset.css"> -->
<link rel="stylesheet" type="text/css" href="back.css">
<link href="https://fonts.googleapis.com/css?family=Roboto|Ultra" rel="stylesheet">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<title></title>
</head>
<body>
<h1>Store Sales</h1>
<form id ="storeForm">
<fieldset>
<legend>Add or Modify Store</legend>
<label for="locationNameInput">Location Name: </label>
<input name="locationNameInput" type="text" required placeholder="Name"/>
<label for="minCustPerHourInput">Min Customer/Hour: </label>
<input name="minCustPerHourInput" type="number" required placeholder="Min"/>
<label for="maxCustPerHourInput">Max Customer/Hour: </label>
<input name="maxCustPerHourInput" type="number" required placeholder="Max"/>
<label for="avgCookiesPerCustInput">Avg Cookies/Customer: </label>
<input name="avgCookiesPerCustInput" type="number" step="any" required placeholder="Avg"/>
<button type="submit" name="button">Add/Modify</button>
</fieldset>
</form>
<div class="tabledata">
<table id="tablejs"></table>
</div>
<script src="app.js"></script>
</body>
</html>