saving php5 version
This commit is contained in:
commit
c2c1ee7b9b
46 changed files with 817 additions and 0 deletions
57
template.php
Executable file
57
template.php
Executable file
|
|
@ -0,0 +1,57 @@
|
|||
<hml>
|
||||
<head>
|
||||
<title>Plessa Poker</title>
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.navi_rl { background-image:url(./images/main_menu_rl_mid.png); display:block; width:248; height:60; }
|
||||
a.navi_rl:hover { background-image:url(./images/main_menu_rl_mid_hover.png); display:block; width:248; height:60; }
|
||||
a.navi_sl { background-image:url(./images/main_menu_sl_mid.png); display:block; width:248; height:60; }
|
||||
a.navi_sl:hover { background-image:url(./images/main_menu_sl_mid_hover.png); display:block; width:248; height:60; }
|
||||
a.navi_login { background-image:url(./images/main_menu_log_mid_in.png); display:block; width:248; height:43; }
|
||||
a.navi_login:hover { background-image:url(./images/main_menu_log_mid_in_hover.png); display:block; width:248; height:43; }
|
||||
a.navi_logout { background-image:url(./images/main_menu_log_mid_out.png); display:block; width:248; height:43; }
|
||||
a.navi_logout:hover { background-image:url(./images/main_menu_log_mid_out_hover.png); display:block; width:248; height:43; }
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body style="background-image:url(./images/holz_bg.jpg);margin:0px;">
|
||||
<table border="0" width="97%" cellspacing="0" cellpadding="0"><tr>
|
||||
<td width="336" valign="top">
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td colspan="3"><a href="index.php" target="_top"><img src="./images/main_menu_top.png" width="336" height="243" alt="" border="0"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="./images/main_menu_rl_left.png" width="32" height="60" alt=""></td>
|
||||
<td><a href="index.php?page=rank" target="_top" class="navi_rl"></a></td>
|
||||
<td><img src="./images/main_menu_rl_right.png" width="56" height="60" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="./images/main_menu_sl_left.png" width="32" height="60" alt=""></td>
|
||||
<td><a href="index.php?page=games" target="_top" class="navi_sl"></a></td>
|
||||
<td><img src="./images/main_menu_sl_right.png" width="56" height="60" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="./images/main_menu_log_left.png" width="32" height="43" alt=""></td>
|
||||
<?php if (LOGIN!="") : ?>
|
||||
<td><a href="index.php?page=logout" target="_top" class="navi_logout"></a></td>
|
||||
<?php else : ?>
|
||||
<td><a href="index.php?page=login" target="_top" class="navi_login"></a></td>
|
||||
<?php endif ?>
|
||||
<td><img src="./images/main_menu_log_right.png" width="56" height="43" alt=""></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td align="left" valign="top">
|
||||
<div class="errormessage"><?php echo $ERROR ?></div>
|
||||
<!--BODY-->
|
||||
<?php echo $BODY ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td colspan="2"><br><br><div class="comment"><?php echo $COMMENT ?></comment></td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue