-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (64 loc) · 2.95 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
<!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">
<!-- CSS STYLE -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- TITLE -->
<title>CRUDS</title>
</head>
<body>
<div class="layOut container py-2 my-3">
<h1 class="text-center my-4 text-white">CRUDS System</h1>
<div class="my-5">
<div class="row">
<form action="">
<input type="text" name="" class="form-control my-4" id="productName" placeholder="Profuct Name">
<input type="text" name="" class="form-control my-4" id="productCategory" placeholder="Profuct Category">
<div class="row align-items-center my-4" id="priceContainer">
<div class="col">
<input type="number" name="" class="form-control" id="productPrice" placeholder="Price">
</div>
<div class="col">
<input type="number" name="" class="form-control" id="productTaxes" placeholder="Taxes">
</div>
<div class="col">
<input type="number" name="" class="form-control" id="productADS" placeholder="ADS">
</div>
<div class="col">
<input type="number" name="" class="form-control" id="productDiscount" placeholder="Discount">
</div>
<div class="col">
<p id="totalPrice" class="text-white bg-danger p-2 rounded-pill m-0">totalPrice: </p>
</div>
</div>
<input type="number" name="" class="form-control my-4" id="productsCount" placeholder="Profucts Count">
<button id="create" class="btn btn-lg btn-primary">Create</button>
</form>
</div>
</div>
<div class="container my-5">
<label for="" class="text-white">
<input type="date" name="" id="date">
filter the products by date
</label>
<table class="table text-center text-white" id="table">
<thead class="">
<td>ID</td>
<td>Product Name</td>
<td>Product Total Price</td>
<td>Product Category</td>
<td>Update</td>
<td>Delet</td>
</thead>
<tbody id="tbody">
</tbody>
</table>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>