|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="stylesheet" href="login.css">
|
|
|
|
<title>Connexion</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container login">
|
|
|
|
<h1>Connexion</h1>
|
|
|
|
<form action="cible_login.php" method="post" id="form">
|
|
|
|
<div class="form-chunck">
|
|
|
|
<label for="username">Utilisateur</label>
|
|
|
|
<input class="input" type="text" name="username">
|
|
|
|
<?php /*if (isset($_GET['error']) AND $_GET['error'] == '2') { echo <<<HTML
|
|
|
|
<small>Nom d'utilisateur incorrecte</small>
|
|
|
|
HTML; }*/ ?>
|
|
|
|
</div>
|
|
|
|
<div class="form-chunck">
|
|
|
|
<label for="password">Mot de passe</label>
|
|
|
|
<input class="input" type="password" name="password" id="">
|
|
|
|
<?php /*if (isset($_GET['error']) AND $_GET['error'] == '3') { echo <<<HTML
|
|
|
|
<small>Mot de passe incorrecte</small>
|
|
|
|
HTML; }*/ ?>
|
|
|
|
</div>
|
|
|
|
<input class="button" type="submit" value="Se connecter">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="container signin">
|
|
|
|
<h1>Toujours pas de compte chez deuzagio ?</h1>
|
|
|
|
<form action="cible_sign-up.php" method="post" id="form">
|
|
|
|
<div class="form-chunck">
|
|
|
|
<label for="username">Utilisateur</label>
|
|
|
|
<input class="input" type="text" name="username">
|
|
|
|
<?php /*if (isset($_GET['error']) AND $_GET['error'] == '1') { echo <<<HTML
|
|
|
|
<small>Nom d'utilisateur déjà pris</small>
|
|
|
|
HTML; }*/ ?>
|
|
|
|
</div>
|
|
|
|
<div class="form-chunck">
|
|
|
|
<label for="password">Mot de passe</label>
|
|
|
|
<input class="input" type="password" name="password" id="">
|
|
|
|
</div>
|
|
|
|
<input class="button" type="submit" value="Se connecter">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|