-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (60 loc) · 2.45 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
<!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">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div id="container">
<h1> Inventory App </h1>
<div id="inputs-list" class="grid1">
<div>
<form action="" id="myForm">
<h2>ADMIN</h2>
</div>
<div>
<button class="goBtn"><a href="add.html">Add Inventory </a></button>
</form>
</div>
<div>
<form action="" id="myForm">
<input id="input1" placeholder="" type="text" required>
<input id="input2" placeholder="" type="text" required>
</form>
</div>
<div>
<form action="" id="myForm">
<select type="cat" id="input3">
<option value="drinks">Drinks</option>
<option value="hardware">Hardware</option>
<option value="wooden">Wooden</option>
<option value="cars">Cars</option>
</select>
<!-- <input id="input3" placeholder="" type="number" required> -->
<input id="input4" placeholder="" type="text" required>
<button id='submit' class="addBtn"></button>
</form>
</div>
<img class="abe" src="image/abe.jpg" alt="Abe">
</div>
<div id='gridH'>
<div id='gridH-Child'>Dashboard</div>
<div id='gridH-Child'><p id="totalQ"></p></div>
<div id='gridH-Child-indicator1'></div>
<div id='gridH-Child-indicator2'>Almost Out of Stock</div>
<div id='gridH-Child-indicator3'>In Stock</div>
</div>
<!-- contents in the div table -->
<div id='grid'>
</div>
</div>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<script src="./script.js"></script>
</body>
</html>