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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Mon compte</title>
<style>
div#mon_compte {
width: 151px;/*largeur de la bote mon compte*/
height: 102px;/*hauteur de la boite mon compte*/
border: 1px solid #cccccc;/*bordure grise de la boite*/
padding: 10px;/*marge interne à la boite de 10 pixels*/
margin: 10px;/*marge extérieure de la boite de 10 pixels*/
font-size:8px;
color:#333333;
text-align:center;
}
div#mon_compte a {
font-size:9px;
color:#333333;
text-decoration:none;
}
div#mon_compte a:hover {
font-size:9px;
color:#333333;
text-decoration:underline;
}
.class_input {
font-family:"arial",verdana, Trebuchet MS, sans-serif;/*police pour input*/
font-size:9px;/*taille police input*/
text-align:right;/*texte aligné à droite*/
background-color:#ffffff;/**/
color:#999999;
padding:0px;
margin-top: 5px; /*margin entre les 2 input de mon compte*/
}
img {
padding: 4px;
}
</style>
</head>
<body>
<div id="mon_compte">
<img src="http://img398.imageshack.us/img398/1027/moncomptezi9.jpg" alt="" />
<img src="http://img236.imageshack.us/img236/3263/traitseparationje9.jpg" alt="" />
<form action="" method="post" id="connex" >
<input type="hidden" name="action" value="connexion" />
<input name="email" type="text" class="class_input" size="26" maxlength="30" value="Votre adresse email" />
<input name="motdepasse" type="text" class="class_input" size="26" maxlength="30" value="Votre mot de passe" />
<!--<a href="javascript:document.getElementById('connex').submit()"><img src="" /></a>-->
<br />
<img src="http://img236.imageshack.us/img236/3263/traitseparationje9.jpg" alt="" />
<a href="" title="Inscrivez vous sur">S'inscrire </a>
<a href="" title="Retrouvez votre mot de passe">Mot de passe oublié?</a>
</form>
</div>
</body>
</html> |
Partager