-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (100 loc) · 3.54 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!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">
<title>Document</title>
</head>
<body>
<!-------------------------------- Input -------------------------------->
<table class="table1">
<body>
<!-- ----------------- 01 -------------------- -->
<tr>
<td>
<label for="pName">Product Name:</label>
</td>
</tr>
<tr>
<td>
<input type="text" class="pName" id="pName" placeholder="Product Name" >
</td>
</tr>
<!-- ----------------- 02 -------------------- -->
<tr>
<td>
<label for="pPrice">Product Price:</label>
</td>
</tr>
<tr>
<td>
<input type="text" class="pPrice" id="pPrice" placeholder="Product Price" >
</td>
</tr>
<!-- ----------------- 03 -------------------- -->
<tr>
<td>
<label for="pCategory">Product Category:</label>
</td>
</tr>
<tr>
<td>
<input type="text" class="pCategory" id="pCategory" placeholder="Product Category" >
</td>
</tr>
<!-- ----------------- 04 -------------------- -->
<tr>
<td>
<label for="pDesc">Product Descreption:</label>
</td>
</tr>
<tr>
<td>
<input type="text" class="pDesc" id="pDesc" placeholder="Product Descreption" class="descBar" >
</td>
</tr>
<!-- ----------------- 05 -------------------- -->
<tr>
<td>
<input type="submit" value="Add Product" class="submitButton" id="submit" onclick="addProduct()">
<input type="submit" value="Edit" class="submitButton" id="edit">
</td>
</tr>
<!-- ------------------------------------------- -->
</body>
</table>
<!-------------------------------- Search Bar -------------------------------->
<form>
<label for="search"></label>
<input type="search" id="search" placeholder="search..." class="searchBar" onkeyup="searchBar(this.value)">
</form>
<!-------------------------------- Output -------------------------------->
<table class="table2">
<!-- Output Static Header -->
<thead>
<tr>
<th class="table2UnderLine">Name</th>
<th class="table2UnderLine">Price</th>
<th class="table2UnderLine">Category</th>
<th class="table2UnderLine">Description</th>
<th class="table2UnderLine">Action</th>
</tr>
</thead>
<!-- Output Values -->
<tbody id="rowPrint" class="rowPrint" id="rowPrint">
<!-- <tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td>
<button></button>
<button></button>
</td>
</tr> -->
</tbody>
</table>
<script src="script.js"></script>
</body>
</html>