-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (86 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi"
crossorigin="anonymous" />
<link
rel="stylesheet"
href="styles.css" />
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/JsBarcode.all.min.js"
defer></script>
<script
src="script.js"
defer></script>
<title>Inventory</title>
</head>
<body>
<div class="container-fluid p-3 p-md-4 p-lg-5">
<div class="input-group-lg row">
<div class="col-12 p-0 col-md-3 input-group-lg form-floating">
<input
type="search"
class="form-control search"
placeholder="Enter Item Number"
aria-label="Enter Item Number"
aria-describedby="basic-addon2"
id="text"
maxlength="15"
inputmode="numeric"
autofocus />
<label for="text">Enter Item Number</label>
</div>
<div class="col-12 col-md-2 p-0 input-group-lg form-floating">
<input
min="0"
type="text"
inputmode="numeric"
pattern="[0-9]*"
class="form-control count"
placeholder="Enter Count"
aria-label="Enter Count"
aria-describedby="basic-addon2"
id="count" />
<label for="count">Enter Count</label>
</div>
<div
class="col-12 col-md-3 col-lg-3 col-xl-3 p-0 input-group-lg form-floating">
<input
type="search"
pattern="[0-9]*"
class="form-control item-name"
placeholder="Enter Item Name"
aria-label="Enter Item Name"
aria-describedby="basic-addon2"
id="item-name" />
<label for="item-name">Enter Item Name</label>
</div>
<div class="col-12 col-md-4 col-lg-3 col-xl-3 input-group-lg p-0">
<button
class="btn btn-primary h-100 w-100"
type="button"
id="generate">
Generate Barcode
</button>
</div>
</div>
<div class="row input-group-lg">
<button
class="btn btn-outline-danger col-12 col-md-6 col-xl-3"
type="button"
id="remove-all">
Remove All Items
</button>
<ul class="list"></ul>
</div>
</div>
</body>
</html>