Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.85 KB | None | 0 0
  1. <?
  2. require('includes/gen_inc.php');
  3. require('includes/inc_index.php');
  4. ?>
  5. <html>
  6. <head>
  7. <title><? echo TITLE; ?></title>
  8. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  9. <link rel="stylesheet" href="css/poker.css" type="text/css">
  10. <script language="JavaScript" type="text/JavaScript" src="js/lobby.php"></script>
  11. </head>
  12.  
  13. <body bgcolor="#000000" text="#CCCCCC" >
  14. <table width="772" border="0" cellspacing="0" cellpadding="2" align="center" bgcolor="#1B1B1B">
  15. <tr>
  16. <td valign="top" bgcolor="#333333">
  17. <table width="100%" border="0" cellspacing="0" cellpadding="1">
  18. <tr>
  19. <td>
  20. <? require('includes/scores.php'); ?>
  21. </td>
  22. </tr>
  23. <tr>
  24. <td>
  25. <table border="0" cellspacing="0" cellpadding="1" width="98%" class="smllfontpink" align="center" height="55">
  26. <tr onMouseOver="this.bgColor = '#330000'; this.style.color = 'FFFFFF'" onMouseOut="this.bgColor = ''; this.style.color = 'CC9999'" onClick="changeview('index.php')" class="hand">
  27. <td>
  28. <? echo MENU_HOME; ?>
  29. </td>
  30. </tr>
  31. <? if (($valid == false) && (MEMMOD == 0)){ ?>
  32. <tr onMouseOver="this.bgColor = '#330000'; this.style.color = 'FFFFFF'" onMouseOut="this.bgColor = ''; this.style.color = 'CC9999'" onClick="changeview('login.php')" class="hand">
  33. <td>
  34. <? echo MENU_LOGIN; ?>
  35. </td>
  36. </tr>
  37. <? } ?>
  38. <? if ($valid == false){ ?>
  39. <tr onMouseOver="this.bgColor = '#330000'; this.style.color = 'FFFFFF'" onMouseOut="this.bgColor = ''; this.style.color = 'CC9999'" onClick="changeview('create.php')" class="hand">
  40. <td>
  41. <? echo MENU_CREATE; ?>
  42. </td>
  43. </tr>
  44. <? } ?>
  45. <? if ($valid == true){ ?>
  46. <tr onMouseOver="this.bgColor = '#330000'; this.style.color = 'FFFFFF'" onMouseOut="this.bgColor = ''; this.style.color = 'CC9999'" onClick="changeview('lobby.php')" class="hand">
  47. <td>
  48. <? echo MENU_LOBBY; ?>
  49. </td>
  50. </tr>
  51. <tr onMouseOver="this.bgColor = '#330000'; this.style.color = 'FFFFFF'" onMouseOut="this.bgColor = ''; this.style.color = 'CC9999'" onClick="changeview('rankings.php')" class="hand">
  52. <td>
  53. <? echo MENU_RANKINGS; ?>
  54. </td>
  55. </tr>
  56. <tr onMouseOver="this.bgColor = '#330000'; this.style.color = 'FFFFFF'" onMouseOut="this.bgColor = ''; this.style.color = 'CC9999'" onClick="changeview('myplayer.php')" class="hand">
  57. <td>
  58. <? echo MENU_MYPLAYER; ?>
  59. </td>
  60. </tr>
  61. <? } ?>
  62. <tr onMouseOver="this.bgColor = '#330000'; this.style.color = 'FFFFFF'" onMouseOut="this.bgColor = ''; this.style.color = 'CC9999'" onClick="changeview('rules.php')" class="hand">
  63. <td>
  64. <? echo MENU_RULES; ?>
  65. </td>
  66. </tr>
  67. <tr onMouseOver="this.bgColor = '#330000'; this.style.color = 'FFFFFF'" onMouseOut="this.bgColor = ''; this.style.color = 'CC9999'" onClick="changeview('faq.php')" class="hand">
  68. <td>
  69. <? echo MENU_FAQ; ?>
  70. </td>
  71. </tr>
  72. <? if ($ADMIN == true){ ?>
  73. <tr onMouseOver="this.bgColor = '#330000'; this.style.color = 'FFFFFF'" onMouseOut="this.bgColor = ''; this.style.color = 'CC9999'" onClick="changeview('admin.php')" class="hand">
  74. <td>
  75. <? echo MENU_ADMIN; ?>
  76. </td>
  77. </tr>
  78. <? } ?>
  79. <? if (($valid == true) && (MEMMOD != 1)){ ?>
  80. <tr onMouseOver="this.bgColor = '#330000'; this.style.color = 'FFFFFF'" onMouseOut="this.bgColor = ''; this.style.color = 'CC9999'" onClick="changeview('index.php?action=logout')" class="hand">
  81. <td>
  82. <? echo MENU_LOGOUT; ?>
  83. </td>
  84. <? } ?>
  85. </table>
  86. </td>
  87. </tr>
  88. </table>
  89. </td>
  90. <td width="650" class="fieldsethead" valign="top" height="100%">
  91. <table width="100%" border="0" cellspacing="0" cellpadding="3">
  92. <tr>
  93. <td bgcolor="#333333"><b><font size="3"><i>
  94. <? echo HOME; ?>
  95. </i> </font></b></td>
  96. </tr>
  97. </table>
  98. <table width="100%" border="0" cellspacing="0" cellpadding="3">
  99. <tr>
  100. <td class="fieldsetheadcontent">Your welcome page content goes here...</td>
  101. </tr>
  102. </table>
  103. </td>
  104. </tr>
  105. </table>
  106. <p>&nbsp; </p>
  107. </body>
  108. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement