
le 02/12/2004 à 14:45
Qques suggestions
Une notification par mail si ya des réponses aux posts qu'on a mis en favoris
hmm ca frai ptet trop de calcul faut voir
hmm ca frai ptet trop de calcul faut voir
body {
margin: 0;
padding:0;
position: absolute;
width: 100%;
height: 100%;
font-family: verdana, arial, sans-serif;
}
.haut {
width: auto;
height: 126px;
font-family: tahoma;
background-color: #5e7f97;
color: #fff;
font-size: 30px;
padding: 10px;
}
.conteneur {
height: 338px;
width: 100%;
}
.gauche {
position: absolute;
left: 0;
font-size: 10px;
width: 180px;
height: 338px;
background-color: #434343;
/*background-image: url(gauche.gif);*/
}
.frame {
margin-left: 180px; /* on place ce bloc à droite du bloc menu de 180px de large */
width: auto;
height: 338px;
background-color: #434343;
overflow: auto; /* cette propriété va permettre le scroll de ce bloc */
font-size: 10px;
}
.bas {
width: auto;
height: 10px;
background-color: #5e7f97;
color: #fff;
font-size: 10px;
padding: 10px;
}
.texte
{
font-size: 10px;
color: white;
}
li
{
color: #434343;
}
.erreur
{
font-size:25px;
font: bold;
text-align:center;
color:red;
}
a:link
{
font-size: 10px;
color: #32CF32;
text-decoration:underline;
/*text-decoration: none;*/
}
a:hover
{
font-size: 10px;
color: #FFFFFF;
text-decoration: none;
}
a:visited
{
font-size: 10px;
color: #32CF32;
/*text-decoration:underline;*/
}
input{
font-family: verdana;
font-size: 11px;
color: #32CF32 ;
font-weight:0;
background-color: #5A5A5A;
border: 1px solid #000000;
margin-top: 1px;
}
<script language=javascript>
function connec()
{
if(document.log.login.value == "" || document.log.pass.value == "")
{
alert("Au moins un des champs est vide");
return false;
}
else
{
log.submit();
return true;
}
}
</script>
<div class=texte>
<form name=log action="index.php?page=log&action=login" method=post>
Login: <input type=text name=login size=15 maxlength=20/><br/>
Pass: <input type=password name=pass size=15 maxlength=10/><br/>
<input type=button onclick="connec()" value="Connexion"/></form></div>