40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
|
|
<html lang="en" dir="ltr">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<!--link rel="icon" href="IconeLogo.ico"/-->
|
|
<title>Connexion</title>
|
|
<link rel="stylesheet" href="css/connexion.css" />
|
|
<link rel="stylesheet" href="css/index.css" />
|
|
</head>
|
|
<body>
|
|
<form method="post" action="./traitement.php" name="formulaire">
|
|
|
|
<div class="wrapper fonduBas">
|
|
<div id="contenu">
|
|
<!-- Tabs Titles -->
|
|
<h2 class="active"> Se connecter</h2>
|
|
<h2 class="inactive souligne"><a href="inscription.html">Créer un compte </a></h2>
|
|
|
|
|
|
<!-- Login Form -->
|
|
<form>
|
|
<input type="text" id="login" class="fondu second" name="login" placeholder="Nom d'utilisateur">
|
|
<input type="password" id="password" class="fondu third" name="password" placeholder="Mot de passe">
|
|
<input type="submit" class="fondu fourth" value="Se connecter">
|
|
</form>
|
|
|
|
<!-- Remind Passowrd -->
|
|
<div id="pied">
|
|
<a class="souligne" href="recupMDP.html">Mot de passe oublié ?</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<! --/form-->
|
|
|
|
</form>
|
|
</body>
|
|
|
|
</html> |