forked from Despmouk/pspi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
91 lines (74 loc) · 2.48 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
<!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 -->
<nav>
<div class="logo">
<img src="logo.png" alt="Logo" class="img-fluid">
</div>
<div class="nav-items">
<a href="homepage.html">Home</a> <a href="products.html">Products</a>
</div>
</nav>
<div class="frame-4">
<label for="search">Search a product: </label>
<form id="search-form">
<input type="text" id="search" name="search">
<button id="search-button">Search</button>
</form>
<div class="results">
<label for="search">Results: </label>
<table id="search-results">
<tr>
<th>ID</th>
<th>Name</th>
<th>Production Year</th>
<th>Price</th>
<th>Color</th>
<th>Size</th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
</div>
<div class="frame-5">
<form id="product-form">
<h4>Add a product:</h3>
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="year">Production year:</label>
<input type="text" id="year" name="year"><br><br>
<label for="price">Price:</label>
<input type="text" id="price" name="price"><br><br>
<label for="color">Color:</label>
<input type="text" id="color" name="color"><br><br>
<label for="size">Size:</label>
<input type="text" id="size" name="size"><br><br>
<button type="submit">Save</button>
</form>
</div>
<footer>
<div class="footer-text">Full Name - AEM</div>
</footer>
<!-- 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>