-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.html
99 lines (82 loc) · 3.74 KB
/
manage.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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<base href="../">
<meta charset="utf-8">
<!-- Use the .htaccess and remove these lines to avoid edge case issues.
More info: h5bp.com/i/378 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/application.css">
<link rel="stylesheet" href="css/brand.css">
<link rel="sitemap" type="application/xml" title="Sitemap" href="/sitemap.xml" />
<!-- All JavaScript at the bottom, except this Modernizr build. -->
<script src="js/vendor/modernizr.custom.82447.js"></script>
<script src="js/WEX.js"></script>
</head>
<body>
<div class="container" data-page="auth">
<div class="ui-panel">
<header>
<h2>Manage Cards</h2>
</header>
<div class="padding-all">
<div class="row">
<div class="well span8">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras dolor velit, varius a mattis a, dictum in diam. Duis nibh sapien, sodales ac fermentum id, tempor nec augue. Sed tristique elit et sapien eleifend sodales. Nulla facilisi.</p>
</div>
</div>
<div class="padding-top">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Driver ID</th>
<th>Last Name</th>
<th>First Name</th>
<th>Middle Name</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td>12345</td>
<td>Bowie</td>
<td>David</td>
<td></td>
<td class="text-success">Active</td>
<td>
<ul class="list-horizontal delimit">
<li><a href="#">Edit</a></li>
</ul>
</td>
</tr>
<tr>
<td>67890</td>
<td>Hendrix</td>
<td>Jimmie</td>
<td></td>
<td class="text-success">Active</td>
<td>
<ul class="list-horizontal delimit">
<li><a href="#">Edit</a></li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="form-actions padding-sides">
<button class="btn btn-primary btn-large pull-right">Add Driver</button>
</div>
</div>
</div>
</body>
</html>