Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.  
  6.     <meta charset="utf-8">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8.  
  9.     <title>.:: Laboratorium &raquo; Nur Akhwan.Web.Id ::.</title>
  10.  
  11.     <!-- Core CSS - Include with every page -->
  12.     <link href="<?php echo base_url(); ?>aset/css/bootstrap.css" rel="stylesheet">
  13.     <link href="<?php echo base_url(); ?>aset/font-awesome/css/font-awesome.css" rel="stylesheet">
  14.  
  15.     <!-- SB Admin CSS - Include with every page -->
  16.     <link href="<?php echo base_url(); ?>aset/css/sb-admin.css" rel="stylesheet">
  17.     <link href="<?php echo base_url(); ?>aset/js/ui/jquery-ui.css" rel="stylesheet">
  18.     <script src="<?php echo base_url(); ?>aset/js/jquery-1.10.2.js"></script>
  19.     <script src="<?php echo base_url(); ?>aset/js/ui/jquery-ui.js"></script>
  20.     <script src="<?php echo base_url(); ?>aset/js/bootstrap.min.js"></script>
  21.     <script src="<?php echo base_url(); ?>aset/js/bootstrap-tooltip.js"></script>
  22.     <script src="<?php echo base_url(); ?>aset/js/plugins/metisMenu/jquery.metisMenu.js"></script>
  23.  
  24.     <!-- Page-Level Plugin Scripts - Dashboard --
  25.     <script src="js/plugins/morris/raphael-2.1.0.min.js"></script>
  26.     <script src="js/plugins/morris/morris.js"></script>
  27.  
  28.     <!-- SB Admin Scripts - Include with every page -->
  29.     <script src="<?php echo base_url(); ?>aset/js/sb-admin.js"></script>
  30.     <script type="text/javascript">
  31.         $(document).ready(function () {
  32.             $('a').tooltip('hide');
  33.         });
  34.    
  35.         var serverTime = <?php echo time() * 1000; ?>; //this would come from the server
  36.         var localTime = +Date.now();
  37.         var timeDiff = serverTime - localTime;
  38.  
  39.         setInterval(function () {
  40.             var realtime    = +Date.now() + timeDiff;
  41.             var date        = new Date(realtime);
  42.             var hours       = date.getHours();
  43.             var minutes     = date.getMinutes();
  44.             var seconds     = date.getSeconds();
  45.            
  46.             var jam         = hours < 10 ? '0' + hours : hours;
  47.             var menit       = minutes < 10 ? '0' + minutes : minutes;
  48.             var detik       = seconds < 10 ? '0' + seconds : seconds;
  49.            
  50.             // will display time in 10:30:23 format
  51.             var waktunya = jam + ':' + menit + ':' + detik;
  52.  
  53.             $('#waktu').html(waktunya);
  54.         }, 1000);
  55.     </script>
  56. </head>
  57.  
  58.  
  59. <body>
  60.  
  61.     <div id="wrapper">
  62.         <div style="height: 150px; border-top: solid 5px #1E4A7A; background: url(<?php echo base_URL(); ?>aset/img/back_3.png)">
  63.             <div class="col-lg-2">
  64.                 <img src="<?php echo base_url(); ?>aset/img/logo.png" class="" style="margin: 10px 0 0 40px; width: 120px; height: 120px">
  65.             </div>
  66.             <div>
  67.                 <h2>Laboratorium &raquo; Nur-Akhwan.Web.Id</h2>
  68.                 <h3 style="margin-top: 0px"><a href="http://nur-akhwan.blogspot.com/" title="Klik untuk menuju blog Nur Akhwan"> Nur-Akhwan.Web.Id</a></h3>
  69.                 <h4><b>Jasa Pembuatan Website (Perusahaan, Sekolah, Instansi Pemerintah), Aplikasi Sistem Informasi, Tugas Akhir, dll.</b></h4>
  70.             </div>
  71.         </div>
  72.        
  73.         <nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0; z-index: initial">
  74.             <div class="navbar-header">
  75.                 <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".sidebar-collapse">
  76.                     <span class="sr-only">Toggle navigation</span>
  77.                     <span class="icon-bar"></span>
  78.                     <span class="icon-bar"></span>
  79.                     <span class="icon-bar"></span>
  80.                 </button>
  81.             </div>
  82.             <!-- /.navbar-header -->
  83.            
  84.             <ul class="nav navbar-top-links">
  85.                
  86.                 <li style="margin-left: 10px"><a href="<?php echo base_URL(); ?>" title="(i) Kembali ke halaman Dashboard (Halaman depan)"><i class="fa fa-home"> </i>  Beranda</a></li>
  87.                 <li><a tabindex="-1" href="<?php echo base_url(); ?>apps/passwod" title="(i) Disini untuk mengubah password User .."><i class="fa fa-wrench"> </i> Ubah Password</a></li>
  88.                 <li><a tabindex="-1" href="<?php echo base_url(); ?>apps/log_akses" title="(i) Disini untuk melihat log akses user, vroh.. "><i class="fa fa-random"> </i> Log Akses</a></li>
  89.                        
  90.                 <li class="dropdown pull-right">
  91.                     <a class="dropdown-toggle" data-toggle="dropdown" href="#" title="(i) Disini untuk logout ..">
  92.                         <i class="fa fa-user fa-fw"></i>  <?php echo $this->session->userdata('admin_user').""; ?> <i class="fa fa-caret-down"></i>
  93.                     </a>
  94.                     <ul class="dropdown-menu dropdown-user">
  95.                        <li><a tabindex="-1" href="<?php echo base_url(); ?>apps/logout"><i class="fa fa-sign-out"> </i> Logout</a></li>
  96.                     </ul>
  97.                     <!-- /.dropdown-user -->
  98.                 </li>
  99.                 <!-- /.dropdown -->
  100.             </ul>
  101.             <!-- /.navbar-top-links -->
  102.  
  103.         </nav>
  104.         <!-- /.navbar-static-top -->
  105.  
  106.         <?php $this->load->view('apps/'.$page); ?>
  107.     </div>
  108.     <div style="padding: 10px 20px; width: 100%; background: #327ABD; color: #fff; position: fixed; bottom: 0; z-index: 1000">
  109.     Contact Me &raquo; SMS : 0856 4343 7024 | YM : akhwan08 | GMail+Talk : akhwan90@gmail.com |
  110.     <a href="#" title="Menerima Jasa Pembuatan Website (Perusahaan, Sekolah, Instansi Pemerintah), Aplikasi Sistem Informasi, dllNur-Akhwan.Web.Id. Program-program Skripsi/tugas akhir juga bisa, bro.. Bisa kolaborasi project juga, bro. Hubungi nomor kontak di taskbar bawah ini, gan.." style="color: #fff; font-weight: bold">Jasa PROGRAMMER WEB</a>
  111.     <i class="pull-right">Load in {elapsed_time} second. <b>&copy; 2014</b></i>
  112.     </div>
  113. </body>
  114.  
  115. </html>