-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (93 loc) · 4.15 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<title>WSO2 Business Activity Monitor - Dshboard</title>
<link rel="stylesheet" href="assets/lib/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/keen-dashboards.css">
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body class="application">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<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="../">
<span class="glyphicon glyphicon-stats"></span>
</a>
<a class="navbar-brand" href="./">BAM Dashboards</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-left">
<li><a href="http://localhost/dashboard">Home</a></li>
<li><a href="http://localhost/dashboard">Documentation</a></li>
<li><a href="http://localhost/dashboard">Support</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
<span class="glyphicon glyphicon-inbox"></span>
<a href="http://localhost/dashboard">My Datasources</a>
</h3>
</div>
<!-- List group -->
<ul class="list-group">
<li class="list-group-item"><a href="http://localhost/dashboard/index.php/dashboard/view">WeatherData</a></li>
<li class="list-group-item"><a href="http://localhost/dashboard/index.php/dashboard/view">SalesByRegion</a></li>
<li class="list-group-item"><a href="http://localhost/dashboard/index.php/dashboard/index">ClickStream</a></li>
</ul>
</div>
<h4>Need Help?</h4>
<p>Give feedback or ask for help at our Support Center or send an email to
<a href="mailto:support@gmail.com">support@wso2.com</a>
</p>
</div>
<div class="col-md-9">
<!-- <div class="alert alert-danger alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<strong>Reminder!</strong> This payment will due within 2 days
</div> -->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><span class="glyphicon glyphicon-stats"></span>
<a href="http://localhost/dashboard/gadgets">Visualizations</a>
</h3>
</div>
<div class="panel-body">
<div class="blank-slate-message">
<h1>You have'nt created any visualizations yet.</h1>
<p class="lead">Use this document as a way to quickly start any new project.
<br> All you get is this text and a mostly barebones HTML document.</p>
<a href="flow-ds.html">
<button type="button" class="btn btn-success">Get Started</button>
</a>
</div>
</div> <!-- /panel-body -->
</div> <!-- /panel -->
</div>
<!-- /col-md-9 -->
</div>
<!-- /.row -->
<hr>
<p class="small text-muted">Built with ♥ by <a href="https://wso2.com">WSO2</a></p>
</div>
<script src="assets/lib/jquery/dist/jquery.min.js"></script>
<script src="assets/lib/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="assets/lib/holderjs/holder.js"></script>
<script>
Holder.add_theme("white", { background:"#fff", foreground:"#a7a7a7", size:10 });
</script>
<script src="assets/lib/keen-js/dist/keen.min.js"></script>
<script src="assets/js/meta.js"></script>
</body>
</html>