-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·103 lines (97 loc) · 3.42 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!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>Machines</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<header>
<h1>Hello Earth Machines</h1>
</header>
<h2>Machines</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></th>
<th>Machine Id</th>
<th>Year</th>
<th>Make</th>
<th>Model</th>
<th>Serial</th>
<th>Class</th>
</tr>
<tr>
<td><a href="#">Edit</a></td>
<td><a href="#">Delete</a></td>
<td>4</td>
<td>2001</td>
<td>CATERPILLAR</td>
<td>D6M</td>
<td>3WN02456</td>
<td>Bulldozer</td>
</tr>
<tr>
<td><a href="#">Edit</a></td>
<td><a href="#">Delete</a></td>
<td>5</td>
<td>2001</td>
<td>CATERPILLAR</td>
<td>320C</td>
<td>AKH01920</td>
<td>Tracked Excavator</td>
</tr>
<tr>
<td><a href="#">Edit</a></td>
<td><a href="#">Delete</a></td>
<td>6</td>
<td>2008</td>
<td>CATERPILLAR</td>
<td>320DL</td>
<td>KGF02672</td>
<td>Tracked Excavator</td>
</tr>
</table>
<p> </p>
<div id="insert">
<form method="POST" id="addMachine">
<legend><strong>Add Machine</strong></legend>
<fieldset class="fields">
<label> Year </label> <input type="text" name="year">
<label> Make </label> <input type="text" name="make">
<label> Model </label> <input name="model">
<label> Serial </label> <input type="text" name="serial">
<label> Class </label> <input type="text" name="class">
</fieldset>
<input class="btn" type="submit" id="addMachine" value="Add Machine">
</form>
<p> </p>
<div id="update">
<form method="POST" id="UpdateMachine">
<legend><strong>Update Machine</strong></legend>
<fieldset class="fields">
<input type="hidden" name="machineId id="udpatemachineId" value="4">
<label> ID: </label> 4
<label> Year </label> <input type="text" name="year" value="2001">
<label> Make </label> <input type="text" name="make" value="CATERPILLAR">
<label> Model </label> <input name="model" value="D6M">
<label> Serial </label> <input type="text" name="serial" value="3WN02456">
<label> Class </label> <input type="text" name="class" value="Bulldozer">
</fieldset>
<input class="btn" type="submit" id="UpdateSavePerson" value="Update Machine">
</form>
<footer>
<p> Project Step 3 Draft Version: Design HTML Interface + DML SQL [Juan Pablo Duque and Marco Scandroglio]</p>
</footer>
</div>
</body>
</html>