You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
689 B

6 years ago
<html>
<body>
<?php
if (isset($_GET['message'])) {
echo $_GET['message'];
}
?>
<form method="post" action="liste.php">
<label for="pseudo">
Entrez votre pseudo :
</label>
<br />
<input type="text" name="pseudo" id="pseudo" />
<br />
<label for="pass">
Entrez votre mot de passe :
</label>
<br />
<input type="password" name="pass" id="pass" />
<br />
<label for="mail">
Entrez votre mail :
</label>
<br />
<input type="email" name="mail" id="mail" />
<br />
<input type="submit" value="Envoyer" />
</form>
</body>
</html>