Advertisement
djoveryde

index.html

Apr 22nd, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. <?php
  2. include_once 'includes/db_connect.php';
  3. include_once 'includes/functions.php';
  4.  
  5. sec_session_start();
  6.  
  7. if (login_check($mysqli) == true) {
  8. $logged = 'in';
  9. } else {
  10. $logged = 'out';
  11. }
  12. ?>
  13. <!DOCTYPE html>
  14. <html>
  15. <head>
  16. <title>Arcadia Network | Home</title>
  17. <meta charset="utf-8">
  18. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  19. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
  20. <link rel="icon" href="favicon.ico" type="image/x-icon">
  21. <meta name="description" content="Arcadia Network | Minecraft modded servers">
  22. <meta name="author" content="DarkEyeDragon">
  23. <!-- Scripts & stylesheets -->
  24. <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
  25. <link rel="stylesheet" type="text/css" href="css/reset.css">
  26. <link rel="stylesheet" type="text/css" href="css/style.css">
  27. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
  28. <script type="text/JavaScript" src="js/sha512.js"></script>
  29. <script type="text/JavaScript" src="js/forms.js"></script>
  30. </head>
  31.  
  32. <header>
  33. <span id="bigA">A</span><h1>rcadia</h1>
  34. <h1 class="mobile">Arcadia Network</h1>
  35. <h3>network</h3>
  36. <h2>Created for you to enjoy</h2>
  37. <ul>
  38. <li><a href="forum">Forums</a></li>
  39. <li><a href="vote.html">Vote</a></li>
  40. <li><a href="#introduction">Servers</a></li>
  41. <li><a href="shop.html">Store</a></li>
  42. <li><a href="">support</a></li>
  43. </ul>
  44. </header>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement