-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjobsearch.html
More file actions
74 lines (74 loc) · 2.81 KB
/
jobsearch.html
File metadata and controls
74 lines (74 loc) · 2.81 KB
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
<!DOCTYPE <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Eopie Riders</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css" />
<script src="js/jquery-3.3.1.js"></script>
<script src="js/bootstrap.bundle.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col center">
<h1>Eopie Delivery</h1>
</div>
</div>
<div class="row">
<div class="col center">
<h2>Find a Contract</h2>
</div>
</div>
<form id="jobSearch" role="form">
<div class="form-group row">
<label for="distanceDesired" class="col col-form-label">How far do you want to drive?</label>
<div class="col">
<select class="form-control">
<option value="5">5km</option>
<option vale="10">10km</option>
<option value="20">20km</option>
<option value="50">50km</option>
<option value="100">100km</option>
<option value="200">200km+</option>
</select>
</div>
</div>
<div class="form-group row">
<div class="col center">
<input type="submit" value="Search" class="btn btn-primary" />
</div>
</div>
<div class="table-responsive-sm">
<table class="table table-striped table-sm table-light table-hover" id="jobList">
<thead id="jobListHeader">
<tr>
<th id="col1">Client</th>
<th id="col2">Destrination</th>
<th id="col3">Distance</th>
<th id="col4">Price</th>
</tr>
</thead>
<tbody id="jobListBody">
<tr>
<td>Populate</td>
<td>Dynamically</td>
<td>After</td>
<td>Search</td>
</tr>
<tr>
<td>With</td>
<td>Links</td>
<td>to Contract</td>
<td>Date!</td>
</tr>
</tbody>
</table>
</div>
</form>
</div>
</body>
</html>