-
Notifications
You must be signed in to change notification settings - Fork 0
/
activecontracts.html
64 lines (63 loc) · 2.45 KB
/
activecontracts.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
<!-- We can reuse this view for both the client and driver views by switching out one heading and button based on client type -->
<!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>Active Contracts</h2>
</div>
</div>
<div class="table-responsive-sm">
<table class="table table-striped table-sm table-light table-hover" id="activeContracts">
<thead id="activeContractstHeader">
<tr>
<th id="col1">Client/Driver</th> <!--Change based on client type-->
<th id="col2">Destrination</th>
<th id="col3">Distance</th>
<th id="col4">Price</th>
</tr>
</thead>
<tbody id="activeContractsBody">
<tr>
<td>Populate</td>
<td>Dynamically</td>
<td>Based on</td>
<td>User</td>
</tr>
<tr>
<td>type</td>
<td>with Links</td>
<td>to Contract</td>
<td>Details!</td>
</tr>
</tbody>
</table>
</div>
<div class="row">
<div class="col center">
<button class="btn btn-primary" id="activeContractsButton"> <!--Change this based on user type-->
Add New Offer/Find New Contract
</button>
</div>
</div>
</form>
</div>
</body>
</html>