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
|
<html>
<head>
<style type="text/css">
legend
{
font-family: Arial;
color: green;
font-weight: bold;
}
label
{
color: blue;
}
fieldset
{
margin-bottom: 15px;
}
</style>
</head>
<body>
<form action="membre.php" method="post">
<fieldset>
<legend>Vos identifiants</legend>
<label for="loguin_pseudo">Pseudo</label>
<input type="text" name="loguin_pseudo" value="" /><br>
<label for="loguin_mot_de_pass">Mot de passe</label>
<input type="password" name="loguin_mot_de_pass" /><br>
<label for="connexion_permanente">Connexion automatique</label>
<input type="checkbox" name="connexion_permanente" /><br>
</fieldset>
<input type="submit" value="Connexion" />
</form>
</body>
</html> |
Partager