-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproducts.html
99 lines (99 loc) · 3.53 KB
/
products.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>WIS Project - Products</title>
<link rel="stylesheet" href="products.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
</head>
<body>
<!-- BEGIN CODE HERE -->
<header>
<h1>
<a href="homepage.html">
<img src="logo.png" width=250px height=58px style="position: relative; left: 60px; top: 60px;">
</a>
<div class="d-grid gap-2 d-md-flex justify-content-md-end">
<a href="homepage.html" class="btn btn-link">Home</a>
<a href="products.html" class="btn btn-primary">Products</a>
</div>
</h1>
</header>
<div class="frame4"><!-- ΠΡΟΧΕΙΡΟ FRAME-->
<div class="row row-cols-2 align-items-center mb-4">
<label class="col-auto" for="inputSearch">Search a product</label>
<div class="col-auto">
<div class="input-group">
<input type="search" class="form-control" id="inputSearch">
<button type="submit" class="btn btn-primary" id="searchButton">Search</button>
</div>
</div>
</div>
<div>
Results
</div>
<table class="border" width="1200" align="center" >
<th>ID</th>
<th>Name</th>
<th>Production year</th>
<th>Price</th>
<th>Color</th>
<th>Size</th>
</tr>
</table>
</div>
<div class="frame5">
<div>
Add a product :
</div>
<form>
<div class="row mb-3">
<label for="inputName" class="col-sm-1 col-form-label">Name :</label>
<div class="col-md-6">
<input type="name" class="form-control" id="inputName">
</div>
</div>
<div class="row mb-3">
<label for="inputProduction year" class="col-sm-1 col-form-label">Production year</label>
<div class="col-md-6">
<input type="text" class="form-control" id="inputProduction year">
</div>
</div>
<div class="row mb-3">
<label for="inputPrice" class="col-sm-1 col-form-label">Price :</label>
<div class="col-md-6">
<input type="text" class="form-control" id="inputPrice">
</div>
</div>
<div class="row mb-3">
<label for="inputColor" class="col-sm-1 col-form-label">Color</label>
<div class="col-md-6">
<input type="text" class="form-control" id="inputColor">
</div>
</div>
<div class="row mb-3">
<label for="inputSize" class="col-sm-1 col-form-label">Size</label>
<div class="col-md-6">
<input type="text" class="form-control" id="inputSize">
</div>
</div>
<div class="d-grid gap-2 d-md-flex justify-content-md-end">
<button type="save" class="btn btn-primary">Save</button>
</div>
</form>
</div>
<footer2>
<strong>
<div class="po">
<p class="text-center">
ΞΘΔ-44444
</p>
</div>
</strong>
</footer2>
<!-- END CODE HERE -->
<script src="products.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</body>
</html>