document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <title>:Home</title>
  6.         <style media="screen">
  7.             .link{
  8.                 font-family: sans-serif ;
  9.                 color: blue;
  10.             }
  11.         </style>
  12.     </head>
  13.     <body>
  14.         <a href="https://titikk0ma.blogspot.co.id/" class="link" target="_blank"><< Cari Tutorial yang Lain</a>
  15.         <?php
  16.             session_start();
  17.             if (@$_SESSION[\'username\'] == \'\') {
  18.                 echo "<script>
  19.                                     alert(\'Silahkan Login Dahulu...\')
  20.                                     window.location=\'index.php\';
  21.                                 </script>";
  22.             }else{
  23.                 echo "<h3> Selamat Datang <label style=\'color:red\'>".$_SESSION[\'username\'].\'</label> Anda Berhasil Login </h3>\';
  24.                 echo "<a href=\'logout.php\'> Logout </a>";
  25.             }
  26.         ?>
  27.     </body>
  28. </html>
');