-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.php
138 lines (126 loc) · 5.28 KB
/
index.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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SPKPL - Sakinah Group | Dashboard</title>
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
<!-- bootstrap 3.0.2 -->
<link href="lte/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<!-- font Awesome -->
<link href="lte/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<!-- Ionicons -->
<link href="lte/css/ionicons.min.css" rel="stylesheet" type="text/css" />
<!-- Theme style -->
<link href="lte/css/AdminLTE.css" rel="stylesheet" type="text/css" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<!-- jQuery 2.0.2 -->
<script src="lte/js/jquery.min.js"></script>
<!-- Bootstrap -->
<script src="lte/js/bootstrap.min.js" type="text/javascript"></script>
<!-- AdminLTE App -->
<script src="lte/js/AdminLTE/app.js" type="text/javascript"></script>
<!-- exclusive js -->
<script src="lte/js/jquery.bootstrap-growl.js"></script>
</head>
<body class="skin-blue">
<!-- header logo: style can be found in header.less -->
<header class="header">
<a href="#" class="logo">
<!-- Add the class icon to your logo image or logo icon to add the margining -->
SPKPL - Sakinah Group
</a>
<!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button-->
<a href="#" class="navbar-btn sidebar-toggle" data-toggle="offcanvas" role="button">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
</nav>
</header>
<div class="wrapper row-offcanvas row-offcanvas-left">
<!-- Left side column. contains the logo and sidebar -->
<aside class="left-side sidebar-offcanvas">
<!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar">
<!-- sidebar menu: : style can be found in sidebar.less -->
<ul class="sidebar-menu">
<li class="active">
<a href="#">
<i class="fa fa-windows"></i> <span>Dashboard</span>
</a>
</li>
<li>
<a href="kriteria.php">
<i class="fa fa-tasks"></i> <span>Data Kriteria</span>
</a>
</li>
<li>
<a href="alternatif.php">
<i class="fa fa-list"></i> <span>Data Alternatif</span>
</a>
</li>
<li>
<a href="analisa.php">
<i class="fa fa-book"></i> <span>Hasil Analisa</span>
</a>
</li>
</ul>
</section>
<!-- /.sidebar -->
</aside>
<!-- Right side column. Contains the navbar and content of the page -->
<aside class="right-side">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Dashboard
<small></small>
</h1>
<ol class="breadcrumb">
<li><a href="#">Dashboard</a></li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<center>
<table><tr>
<td><img src="img/pes.jpg" width="100"></td>
<td><h2 class="text-green">SPK Penentuan Lokasi</br>Sakinah Group</h2></td>
</tr>
<table>
<!-- <script type="text/javascript">
$(function() {
$.bootstrapGrowl("This is a test.");
setTimeout(function() {
$.bootstrapGrowl("This is another test.", { type: 'success' });
}, 1000);
setTimeout(function() {
$.bootstrapGrowl("Danger, Danger!", {
type: 'danger',
align: 'center',
width: 'auto',
allow_dismiss: false
});
}, 2000);
setTimeout(function() {
$.bootstrapGrowl("Danger, Danger!", {
type: 'info',
align: 'left',
stackup_spacing: 30
});
}, 3000);
});
</script> -->
</section><!-- /.content -->
</aside><!-- /.right-side -->
</div><!-- ./wrapper -->
</body>
</html>