2025-03-22 00:49:46 +01:00

41 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="style.css">
<script src="script.js">
</script>
</head>
<body>
<div class="mainContainer">
<h1>
Formulaire d'inscription
</h1>
<form method="GET" action="">
<p>
<label for="pseudo">Pseudo : </label>
<input type="text" name="pseudo" id="pseudo_field" minlength="4" maxlength="8" onfocus="afficheAide('pseudo');" onblur="deleteAide('pseudo');" required>
<span id="pseudo"></span>
</p>
<p>
<label for="password">Mot de passe : </label>
<input type="password" name="password" id="password_field" minlength="8" onfocus="afficheAide('password');" onblur="deleteAide('password');" required>
<span id="password"></span>
</p>
<p>
<label for="email">Email : </label>
<input type="email" name="email" id="email_field" maxlength="30" placeholder="utilisateur@domaine.fr" required>
<span id="email"></span>
</p>
<p>
<input type="checkbox" name="confirm" id="1" value="confirm">
<label for="1">M'envoyer un courrier de confirmation</label>
</p>
</form>
</div>
</body>
</html>