45 lines
1.4 KiB
HTML
45 lines
1.4 KiB
HTML
|
|
<html lang="fr" dir="ltr">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<!--link rel="icon" href="IconeLogo.ico"/-->
|
|
<title>Inscription</title>
|
|
<link rel="stylesheet" href="css/inscription.css" />
|
|
<link rel="stylesheet" href="css/index.css" />
|
|
</head>
|
|
<body>
|
|
<form method="post" action="./php/Script/traitementInscription.php" name="formulaire">
|
|
|
|
<div class="wrapper fonduBas">
|
|
<div id="contenu">
|
|
<!-- Tabs Titles -->
|
|
<h2 class="inactive souligne"><a href="connexion.html"> Se connecter</a></h2>
|
|
<h2 class="active">Créer un compte</h2>
|
|
|
|
<!-- Login Form -->
|
|
<form>
|
|
<input type="text" id="nom" class="fondu premier" name="nom" placeholder="Nom">
|
|
<input type="text" id="prenom" class="fondu deuxieme" name="prenom" placeholder="Prenom">
|
|
<input type="text" id="mail" class="fondu troisieme" name="mail" placeholder="E-mail">
|
|
<input type="text" id="login" class="fondu quatrieme" name="login" placeholder="Nom d'utilisateur">
|
|
<input type="password" id="password" class="fondu cinquieme" name="password" placeholder="Mot de passe">
|
|
<input type="submit" class="fondu sixieme" value="S'inscrire">
|
|
</form>
|
|
|
|
<!-- Remind Passowrd -->
|
|
<div id="pied">
|
|
<a class="souligne" href="connexion.html">Déjà inscrit ?</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|
|
|