This commit is contained in:
Bounni Loubelo Benicia
2025-06-14 17:09:02 +02:00
parent 2c713bec54
commit 5289c6a7fd
32 changed files with 1474 additions and 0 deletions

29
connexion/login.html Normal file
View File

@@ -0,0 +1,29 @@
<!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>