-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (57 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Management System</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="crud">
<div class="head">
<h2>Product Management System</h2>
<p>Coded With <span class="love">♥</span></p>
</div>
<div class="inputs">
<input placeholder="title" type="text" id="title">
<div class="price">
<input onkeyup="getTotal()" placeholder="Price" type="number" id="Price">
<input onkeyup="getTotal()" placeholder="taxes" type="number" id="taxes">
<input onkeyup="getTotal()" placeholder="Ads" type="number" id="Ads">
<input onkeyup="getTotal()" placeholder="Discount" type="number" id="Discount">
<small id="total"> </small>
</div>
<input type="number" placeholder="Count" id="Count">
<input placeholder="Category" id="Category">
<button id="submit">Creat</button>
</div>
<div class="outputs">
<div class="searchBlock">
<input onkeyup="SearchData(this.value)" type="text" id="search" placeholder="Search">
<div class="btnSearch">
<button onclick="GetSearchMoood(this.id)" id="SearchTitle">Search By Title</button>
<button onclick="GetSearchMoood(this.id)" id="SearchCategory">Search By Category</button>
</div>
</div>
</div>
<div id="DeleteAll">
</div>
<table>
<tr>
<th>id</th>
<th>title</th>
<th>price</th>
<th>taxes</th>
<th>ada</th>
<th>discount</th>
<th>Total</th>
<th>category</th>
<th>update</th>
<th>delete</th>
</tr>
<tbody id="tbody">
</div>
<script src="assets/js/script.js"></script>
</body>
</html>