madeslimacek6

admin/index.php

Jun 24th, 2019
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.38 KB | None | 0 0
  1. <?php
  2.  
  3. session_start();
  4. include "../koneksi.php";
  5. include "../auth/auth_user.php";
  6. ?>
  7. <!DOCTYPE html>
  8. <html>
  9.  
  10. <head>
  11.   <meta charset="utf-8">
  12.   <title>Laman Admin</title>
  13.   <!-- Icon -->
  14.   <link rel="shortcut icon" type="image/icon" href="../favicon.ico">
  15.   <!-- Tell the browser to be responsive to screen width -->
  16.   <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  17.   <!-- Bootstrap 3.3.5 -->
  18.   <link rel="stylesheet" href="../aset/bootstrap/css/bootstrap.min.css">
  19.   <!-- Font Awesome -->
  20.   <link rel="stylesheet" href="../aset/fa/css/font-awesome.css">
  21.   <!-- DataTables -->
  22.   <link rel="stylesheet" href="../aset/plugins/datatables/dataTables.bootstrap.css">
  23.   <!-- Theme style -->
  24.   <link rel="stylesheet" href="../aset/dist/css/AdminLTE.min.css">
  25.   <!-- AdminLTE Skins. Choose a skin from the css/skins
  26.          folder instead of downloading all of them to reduce the load. -->
  27.   <link rel="stylesheet" href="../aset/dist/css/skins/_all-skins.min.css">
  28. </head>
  29.  
  30. <body class="hold-transition skin-blue sidebar-mini">
  31.   <div class="wrapper">
  32.     <?php
  33.     include "../auth/content_header.php";
  34.     ?>
  35.     <!-- Left side column. contains the logo and sidebar -->
  36.     <aside class="main-sidebar">
  37.       <!-- sidebar: style can be found in sidebar.less -->
  38.       <section class="sidebar">
  39.         <!-- Sidebar user panel -->
  40.         <div class="user-panel">
  41.           <div class="pull-left image">
  42.             <p></p>
  43.           </div>
  44.         </div><!-- sidebar menu: : style can be found in sidebar.less -->
  45.         <ul class="sidebar-menu">
  46.           <li class="header">
  47.             <h4><b>
  48.                 <center>Menu</center>
  49.               </b></h4>
  50.           </li>
  51.           <li class="active"><a href="index.php"><i class="fa fa-home"></i><span>Dashboard</span></a></li>
  52.           <li><a href="user.php"><i class="fa fa-user-circle-o"></i><span>User</span></a></li>
  53.           <li><a href="dosen.php"><i class="fa fa-user"></i><span>Dosen</span></a></li>
  54.           <li><a href="mahasiswa.php"><i class="fa fa-users"></i><span>Mahasiswa</span></a></li>
  55.           <li><a href="jurusan.php"><i class="fa fa-university"></i><span>Program Studi</span></a></li>
  56.         </ul>
  57.       </section>
  58.       <!-- /.sidebar -->
  59.     </aside>
  60.  
  61.     <!-- Content Wrapper. Contains page content -->
  62.     <div class="content-wrapper">
  63.       <!-- Content Header (Page header) -->
  64.       <section class="content-header">
  65.         <h1>
  66.           Dashboard
  67.         </h1>
  68.         <ol class="breadcrumb">
  69.           <li><i class="fa fa-home"></i> Dashboard</li>
  70.         </ol>
  71.       </section>
  72.  
  73.       <!-- Main content -->
  74.       <section class="content">
  75.         <div class="row">
  76.           <div class="col-xs-12">
  77.             <div class="box">
  78.               <div class="box-header">
  79.                 <div class="alert alert-block alert-success">
  80.                   <button type="button" class="close" data-dismiss="alert">
  81.                     <i class="ace-icon fa fa-times"></i>
  82.                   </button>
  83.                   <i class="ace-icon fa fa-check green"> </i>
  84.                   Selamat Datang di
  85.                   <strong class="green">
  86.                     Panel Admin
  87.                   </strong>,
  88.                   Dibuat Oleh Mahasiswa
  89.                   Manajemen Informatika, <small>Politeknik Negeri Lampung.</small>
  90.                 </div>
  91.                 <div class="box-body">
  92.  
  93.                 </div><!-- /.box-body -->
  94.               </div><!-- /.box -->
  95.             </div><!-- /.col -->
  96.           </div><!-- /.row -->
  97.       </section><!-- /.content -->
  98.     </div><!-- /.content-wrapper -->
  99.     <?php
  100.     include  "../auth/content_footer.php";
  101.     ?>
  102.   </div><!-- ./wrapper -->
  103.  
  104.   <!-- jQuery 2.1.4 -->
  105.   <script src="../aset/plugins/jQuery/jQuery-2.1.4.min.js"></script>
  106.   <!-- Bootstrap 3.3.5 -->
  107.   <script src="../aset/bootstrap/js/bootstrap.min.js"></script>
  108.   <!-- DataTables -->
  109.   <script src="../aset/plugins/datatables/jquery.dataTables.min.js"></script>
  110.   <script src="../aset/plugins/datatables/dataTables.bootstrap.min.js"></script>
  111.   <!-- SlimScroll -->
  112.   <script src="../aset/plugins/slimScroll/jquery.slimscroll.min.js"></script>
  113.   <!-- FastClick -->
  114.   <script src="../aset/plugins/fastclick/fastclick.min.js"></script>
  115.   <!-- AdminLTE App -->
  116.   <script src="../aset/dist/js/app.min.js"></script>
  117. </body>
  118.  
  119. </html>
Advertisement
Add Comment
Please, Sign In to add comment