-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (33 loc) · 1.17 KB
/
index.html
File metadata and controls
39 lines (33 loc) · 1.17 KB
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
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<div class="container">
<div id="data">
<input type="number" id="id" placeholder="Enter ID:">
<button type="text" id="image">Upload image:</button>
<input type="text" id="name" placeholder="Enter name:">
<input type="number" id="amount" placeholder="Enter amount:">
<input type="number" id="weight" placeholder="Enter weight:">
<input type="text" id="comments" placeholder="Enter comments:">
<button class="btnAdd">Add Product</button>
<button class="btnShow">Show ALL</button>
</div>
<div id="presenter">
</div>
<!-- <table id="table"> -->
<!-- <tr>
<th>Name</th>
<th>Amount</th>
<th>Details</th>
</tr> -->
<!-- </table> -->
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="app.js"></script>
</body>
</html>