Created
September 26, 2023 08:48
-
-
Save aminnairi/f715ecb8c5e8a8a4b748fc8e84b8c0b2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="fr-FR"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="description" content="Découvrez notre tout nouveau site internet."> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Le titre de votre site internet</title> | |
</head> | |
<body> | |
<form method="POST" action="/php/register.php"> | |
<label for="firstname">Prénom</label> | |
<input id="firstname" type="text" name="firstname" placeholder="Ex: Jean" required autofocus> | |
<input type="text" name="lastname" placeholder="Ex: SAMUEL" required> | |
<input type="email" name="email" placeholder="Ex: [email protected]" required> | |
<input type="password" name="password" required> | |
<input type="password" name="confirm" required> | |
<label for="eula">J'accepte les CGU</label> | |
<input type="checkbox" id="eula" name="eula" required> | |
<label for="newsletter">Je m'inscrit à la newsletter</label> | |
<input type="checkbox" id="newsletter" name="newsletter" required> | |
<button> | |
M'inscrire | |
</button> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment