Files
WEBSAE/connexion/inscription.html
Bounni Loubelo Benicia 5289c6a7fd Travail
2025-06-14 17:09:02 +02:00

33 lines
750 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Inscription</title>
<link rel="stylesheet" href="login.css">
</head>
<body>
<div class="login-container">
<h2>Inscription</h2>
<form action="actionInscription.php" method="post">
<label for="login">Login :</label>
<input type="text" name="login" required><br><br>
<label for="email">Adresse mail :</label>
<input type="email" name="email" id="email" required> <br><br>
<label for="mdp">Mot de passe :</label>
<input type="password" name="mdp" required><br><br>
<input type="submit" value="S'inscrire">
</form>
<p> Deja un compte ?
<a href="login.html" class="link"> Connectez vous !</a>
</p>
<p>
<a href="Page-acc.php" class="link"> Retour a l'accueil</a>
</p>
</div>
</body>
</html>