1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
| <table cellspacing="0" width="98%" border="0" bgcolor="white">
<tr width="100%">
<td>
<table width="100%">
<tr>
<td align="left">
<font face="Helvetica" color="black" size=2>
<?php
if($idpseudo > 0)
{
echo "Salut à toi, <i><b>".$_COOKIE['pseudo']."</b></i>";
}
else
{
?>
Pour participer, <b>connecte-toi</b> !!!
<?php
}
?>
</font>
</td>
<td align="right">
<font face="Helvetica" color="black" size=2>
<?php
if($idpseudo > 0)
{
?>
<a onclick="supprimerConnexion();" style="cursor:pointer;"><b>Déconnexion</b></a>
<?php
}
else
{
?>
<a onclick="afficherConnexion();" style="cursor:pointer;"><b>Connexion</b></a>
<?php
}
?>
</font>
</td>
</tr>
</table>
</td>
</tr>
<tr id="tr_conn" style="display:none;" align="center">
<td>
<table width="730px" cellspacing="0" border="0" align="center" bgcolor="#e5e5ff" height="60px" style="border-collapse : collapse;border : 4px ridge #aaaafa;border-spacing: 5px;">
<tr align="center">
<td width="40%">
<font face="Arial Black" color="black" size=2>
Login : <input type="text" name="login" size="20">
</font>
</td>
<td width="40%">
<font face="Arial Black" color="black" size=2>
Password : <input type="password" name="password" size="20">
</font>
</td>
<td width="10%" style="border-right:1px dashed #aaaafa;">
<input type="submit" value="OK" name="logger">
</td>
<td width="10%">
<a style="font-family:cursive,fantasy,arial;color: black;font-weight:bold;font-size:12px;text-decoration: none;" href="index.php?connect=0&old=<?php echo $_GET['forum']; ?>">S'inscrire</a>
</td>
</tr>
</table>
</td>
</tr>
</table> |