-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
49 lines (49 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Driver Navigation | GEAR Systems</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<style>
</style>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Driver Navigation Portal | GEAR Systems</a>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-lg-6" id="left-side">
<img src="img/driver.png" alt="">
</div>
<div class="col-lg-6" id="right-side">
<div class="jumbotron">
<h1>Hi Mr.Driver</h1>
<p>Welcome Back to the On Field Issue resolving system. It looks like a few issues are assigned to you to resolve in the areas surrounding you</p>
<p><a class="btn btn-primary btn-lg" href="issues.html">Click Here to View your Issues</a></p>
</div>
<div class="row">
<div class="col-lg-6">
<a href="#" class="btn btn-success btn-block">In Progress</a>
</div>
<div class="col-lg-6">
<a href="#" class="btn btn-info btn-block">Resolved</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>