-
Notifications
You must be signed in to change notification settings - Fork 3
/
report.php
30 lines (30 loc) · 894 Bytes
/
report.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SmartBills - Reports</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery.dataTables.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.dataTables.min.js"></script>
<link href='css/opensans.css' rel='stylesheet' type='text/css'>
<style>
body{
font-family: 'Open Sans';
}
</style>
<script>
$(document).ready(function() {
$('#example').DataTable({
"pageLength": 50
});
} );
</script>
</head>
<body>
<?php include "navbar.php"; ?>
</body>
</html>