Skip to content

Instantly share code, notes, and snippets.

@aminnairi
Created September 26, 2023 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aminnairi/f715ecb8c5e8a8a4b748fc8e84b8c0b2 to your computer and use it in GitHub Desktop.
Save aminnairi/f715ecb8c5e8a8a4b748fc8e84b8c0b2 to your computer and use it in GitHub Desktop.
<!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@domain.com" 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