-
Notifications
You must be signed in to change notification settings - Fork 0
/
aplication.php
242 lines (207 loc) · 6.36 KB
/
aplication.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<?php
//Mulai Sesion
session_start();
if (isset($_SESSION["ses_nama"])==""){
header("location: member.php");
}else{
$data_id = $_SESSION["ses_id"];
$data_email = $_SESSION["ses_email"];
$data_nama = $_SESSION["ses_nama"];
$data_level = $_SESSION["ses_level"];
}
include "inc/koneksi.php";
include "inc/rupiah.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Aplikasi RT-RW Net</title>
<link rel="icon" href="dist/img/komp.png">
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<!-- DataTables -->
<link rel="stylesheet" href="plugins/datatables/dataTables.bootstrap.css">
<!-- Select2 -->
<link rel="stylesheet" href="plugins/select2/select2.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="dist/css/AdminLTE.min.css">
<!-- AdminLTE Skins. Choose a skin from the css/skins
folder instead of downloading all of them to reduce the load. -->
<link rel="stylesheet" href="dist/css/skins/_all-skins.min.css">
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
</head>
<body class="hold-transition skin-blue sidebar-mini">
<!-- Site wrapper -->
<div class="wrapper">
<header class="main-header">
<!-- Logo -->
<a href="index.php" class="logo">
<span class="logo-lg">
<marquee>
<b>APLIKASI TAGIHAN RT-RW NET</b>
</marquee>
</span>
</a>
<!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top">
<!-- Sidebar toggle button-->
<a href="#" class="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>
<div class="navbar-custom-menu">
<ul class="nav navbar-nav">
<!-- Messages: style can be found in dropdown.less-->
<li class="dropdown messages-menu">
<a class="dropdown-toggle">
<span>
<b>
APLIKASI TAGIHAN RT-RW NET (PAKET BULANAN)
</b>
</span>
</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- =============================================== -->
<!-- Left side column. contains the sidebar -->
<aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar">
<!-- Sidebar user panel -->
<div class="user-panel">
<div class="pull-left image">
<img src="dist/img/komp.png" class="" alt="User Image">
</div>
<div class="pull-left info">
<p>
<?php echo $data_nama; ?>
</p>
<span class="label label-warning">
Pelanggan
</span>
</div>
</div>
</br>
<!-- /.search form -->
<!-- sidebar menu: : style can be found in sidebar.less -->
<ul class="sidebar-menu">
<li class="header">MAIN NAVIGATION</li>
<!-- Level -->
<li class="treeview">
<a href="?page=_plg">
<i class="fa fa-dashboard"></i>
<span>Dashboard</span>
<span class="pull-right-container">
</span>
</a>
</li>
<li class="treeview">
<a href="?page=data-tagihan">
<i class="fa fa-home"></i>
<span>Data Tagihan</span>
<span class="pull-right-container">
</span>
</a>
</li>
<li class="header">OTHER</li>
<li>
<a href="logout.php" onclick="return confirm('Anda yakin keluar dari aplikasi ?')">
<i class="fa fa-sign-out"></i>
<span>Logout</span>
<span class="pull-right-container"></span>
</a>
</li>
</section>
<!-- /.sidebar -->
</aside>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<!-- Main content -->
<section class="content">
<?php
if(isset($_GET['page'])){
$hal = $_GET['page'];
switch ($hal) {
//Klik Halaman Home Pengguna
case '_plg':
include "home/pelanggan.php";
break;
//Pengguna
case 'data-tagihan':
include "pelanggan/data_tagihan.php";
break;
//default
default:
echo "<center><br><br><br><br><br><br><br><br><br>
<h1> Halaman tidak ditemukan !</h1></center>";
break;
}
}else{
// Auto Halaman Home Pengguna
if($data_level=="PLG"){
include "home/pelanggan.php";
}
}
?>
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<footer class="main-footer">
<div class="pull-right hidden-xs">
</div>
<center>
<strong>Copyright ©
<a href="https://www.youtube.com/channel/UCDxjOzW7F0JOkltlXT6g7AQ">Elseif Software House</a>.</strong> All rights reserved.
</center>
</footer>
<div class="control-sidebar-bg"></div>
<!-- ./wrapper -->
<!-- jQuery 2.2.3 -->
<script src="plugins/jQuery/jquery-2.2.3.min.js"></script>
<!-- Bootstrap 3.3.6 -->
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="plugins/select2/select2.full.min.js"></script>
<!-- DataTables -->
<script src="plugins/datatables/jquery.dataTables.min.js"></script>
<script src="plugins/datatables/dataTables.bootstrap.min.js"></script>
<!-- AdminLTE App -->
<script src="dist/js/app.min.js"></script>
<!-- AdminLTE for demo purposes -->
<script src="dist/js/demo.js"></script>
<!-- page script -->
<script>
$(function() {
$("#example1").DataTable();
$('#example2').DataTable({
"paging": true,
"lengthChange": false,
"searching": false,
"ordering": true,
"info": true,
"autoWidth": false
});
});
</script>
<script>
$(function() {
//Initialize Select2 Elements
$(".select2").select2();
});
</script>
</body>
</html>