-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
43 lines (38 loc) · 1.66 KB
/
home.html
File metadata and controls
43 lines (38 loc) · 1.66 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
<html>
<head>
<title>Home</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!--js for this page-->
<script src="home.js"></script>
</head>
<body>
<div class='container'>
<div class='row'>
<div class="col-xs-hidden col-sm-2"></div>
<div class="col-xs-12 col-sm-8">
<div class="row">
<div class="col-xs-4 text-center">
<a class="btn btn-info" style="color:white" href="index.html">Log Out</a>
</div>
<div class="col-xs-4 text-center">
<a class="btn btn-info" style="color:white" href="daterange.html">Search By Date</a>
</div>
<div class="col-xs-4 text-center">
<a class="btn btn-info" style="color:white" href="report.html">Add Report</a>
</div>
</div>
<div class="row" id="load-reports">
<div class="list-group">
</div>
</div>
</div>
<div class="col-xs-hidden col-sm-2"></div>
</div>
</div>
</body>
</html>