30 lines
641 B
HTML
30 lines
641 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Connexion</title>
|
|
<link rel="stylesheet" href="login.css">
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<h2>Connexion</h2>
|
|
<form action="actionLogin.php" method="post">
|
|
<label for="login">Login :</label>
|
|
<input type="text" name="login" required><br><br>
|
|
|
|
<label for="mdp">Mot de passe :</label>
|
|
<input type="password" name="mdp" required><br><br>
|
|
|
|
<input type="submit" value="Se connecter">
|
|
</form>
|
|
<p>Pas encore de compte ?
|
|
<a href="inscription.html" class="link"> Creez-en un !</a>
|
|
</p>
|
|
<p>
|
|
<a href="Page-acc.html" class="link"> Retour a l'accueil</a>
|
|
</p>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|