-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (86 loc) · 2.91 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<script src="https://unpkg.com/read-excel-file@5.x/bundle/read-excel-file.min.js"></script>
<link rel="icon" href="icon.ico" />
<title>Logistics 1</title>
<meta
name="keywords"
content="Logistics, counter, distribution, product counter, product searcher"
/>
<meta
name="description"
content="Logistics assistance program for the distribution of products to different destinations."
/>
<meta name="author" content="TinF9" />
</head>
<body class="body--backImage" id="body">
<div class="batch-selection" id="batchSelection">
<form>
<label class="button file-input_label"
>Choose a file to work with<br />(.xlsx, .xls)
<input
type="file"
accept=".xlsx,.xls"
id="fileInput"
class="file-input"
/>
</label>
</form>
<a
href="https://github.com/TinF9/Logistics1#how-to-use-it"
target="_blank"
>How to</a
>
</div>
<div class="flex-container" id="flexContainer">
<div class="flex-container__item1">
<div class="sticky-container">
<div class="batch-indicator" id="batchIndicator"></div>
<h1>Product Selection</h1>
<form id="form1">
<input
list="optionsList"
id="searcher"
class="searcher"
name="searcher"
autocomplete="off"
spellcheck="false"
placeholder="Search product"
/>
<datalist id="optionsList" class="listClass"> </datalist>
</form>
<p id="productDetails"></p>
<div class="alert alert--fully-placed">Fully Placed</div>
<div class="alert alert--overstock">Overstocked</div>
<div>
<button id="button1" class="button">Place product</button>
<button id="button2" class="button">Remove product</button>
</div>
<div>
<button id="button3" class="button">Reset all counts</button>
<button id="button4" class="button">Reset this product only</button>
</div>
<div>
<button id="button5" class="button">Print table</button>
</div>
</div>
</div>
<div class="flex-container__item2">
<table id="table" class="table">
<tr class="table__header">
<th>Product Code</th>
<th>Quantity</th>
<th>Placed</th>
<th>Not Placed</th>
<th>Destination List</th>
</tr>
</table>
</div>
</div>
</body>
</html>