-
Notifications
You must be signed in to change notification settings - Fork 1
/
products.html
executable file
·77 lines (72 loc) · 2.3 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
<!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>Products</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<header>
<h1>Hello Earth Machines</h1>
</header>
<h2>Products</h2>
<a href="index.html"> Machines</a>
<a href="locations.html"> Locations</a>
<a href="mechanics.html"> Mechanics</a>
<a href="products.html"> Products</a>
<a href="workorders.html"> Work Orders</a>
<br>
<br>
<table>
<tr>
<th><a href="#">New</a></th>
<th>Product Id</th>
<th>Product Name</th>
<th>Reference</th>
<th>Brand</th>
<th>Description</th>
</tr>
<tr>
<th></th>
<td>1</td>
<td>Lubricant X</td>
<td>REF001</td>
<td>Brand A</td>
<td>High-quality lubricant for earth moving machinery</td>
</tr>
<tr>
<th></th>
<td>6</td>
<td>Air filter</td>
<td>P532501</td>
<td>Donaldson</td>
<td>Air filter for excavators</td>
</tr>
<tr>
<th></th>
<td>7</td>
<td>Hydraulic oil</td>
<td>HYDO10</td>
<td>Caterpillar</td>
<td>Hydraulic oil 6000+ hours extended life</td>
</tr>
</table>
<p> </p>
<div id="insert">
<form method="POST" id="addProduct">
<legend><strong>Add Product</strong></legend>
<fieldset class="fields">
<label> Product Name</label> <input type="text" name="productName">
<label> Reference </label> <input name="reference">
<label> Brand </label> <input type="text" name="brand">
<label> Description </label> <input type="text" name="description">
</fieldset>
<input class="btn" type="submit" id="addProduct" value="Add Product">
</form>
<footer>
<p> Project Step 3 Draft Version: Design HTML Interface + DML SQL [Juan Pablo Duque and Marco Scandroglio]</p>
</footer>
</body>
</html>