-
Notifications
You must be signed in to change notification settings - Fork 1
/
locations.html
executable file
·87 lines (81 loc) · 2.54 KB
/
locations.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
<!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>Locations</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<header>
<h1>Hello Earth Machines</h1>
</header>
<h2>Locations</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>Location Id</th>
<th>Location Name</th>
<th>Address</th>
<th>Zipcode</th>
<th>State</th>
<th>Client Location?</th>
</tr>
<tr>
<td></td>
<td>1</td>
<td>HelloEarth Depot 1</td>
<td>123 Main Street</td>
<td>12345</td>
<td>State A</td>
<td>0</td>
</tr>
<tr>
<td></td>
<td>2</td>
<td>HelloEarth Depot 2</td>
<td>456 Market Ave</td>
<td>67890</td>
<td>State B</td>
<td>0</td>
</tr>
<tr>
<td></td>
<td>4</td>
<td>Client Site 1</td>
<td>725 Oakland Blvd</td>
<td>24559</td>
<td>State C</td>
<td>1</td>
</tr>
</table>
<p> </p>
<div id="insert">
<form method="POST" id="addLocation">
<legend><strong>Add Location</strong></legend>
<fieldset class="fields">
<label> Location Name</label> <input type="text" name="locationName">
<label> Address </label> <input name="address">
<label> Zipcode </label> <input type="text" name="zipcode">
<label> State </label> <input type="text" name="zipcode">
<label> Client Location ?</label> <select name="isClientLocation">
<option value="0"> No </option>
<option value="1" selected> Yes </option>
</fieldset>
<br>
<input class="btn" type="submit" id="addLocation" value="Add Location">
</form>
<footer>
<p> Project Step 3 Draft Version: Design HTML Interface + DML SQL [Juan Pablo Duque and Marco Scandroglio]</p>
</footer>
</div>
</body>
</html>