-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount-listings.php
47 lines (47 loc) · 1.87 KB
/
account-listings.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<!-- meta data -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<?php include 'includes/logo.php';?>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="/semantic/out/semantic.min.css">
<link rel="stylesheet" type="text/css" href="css/account_listings.css">
<!-- JS -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<!-- Custom JS for loading menu tab php file onclick -->
<style type="text/css">
${demo.css}
</style>
</head>
<body>
<div class="ui grid">
<!--Left side of page with logo,title and menu-->
<div id="dtop" class="sixteen wide column">
<!--Cisco Logo with link to cisco website-->
<div id="d1">
<a href="<?php include 'includes/link.php';?>" class="ui small image">
<img src="images/cisco_logo.png">
</a>
</div>
<!--Page Title-->
<div id="d2">
<h1 id="h1">ACCOUNT-LISTINGS</h1>
</div>
<!--Menu for navigation-->
<div id="d3" class="ui blue compact menu">
<a href="/account-listings.php" id="a1" class="item active">Account-Listings</a>
<a href="/service-coefficient.php" id="a1" class="item">Service-Coefficient</a>
<a href="/knvi.php" id="a1" class="item">KNVI's</a>
</div>
</div>
<!--Right side of page which is loading as per navigation-->
<div id="dbottom" class="sixteen wide column"><?php include('includes/account_list.php');?></div>
</div>
<!-- Highcharts JS as recommended should be declared in body end-->
<script src="highcharts/js/highcharts.js"></script>
<script src="highcharts/js/modules/exporting.js"></script>
<script src="highcharts/js/modules/export-csv.js"></script>
<script src="highcharts/js/themes/sand-signika.js"></script>
</body>
</html>