inscr.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <link rel="stylesheet" href="style.css" />
  6. <title>DMonde - Inscription</title>
  7. </head>
  8. <body>
  9. <section>
  10. <h1>Inscrivez vous sur <em class="dm">DMonde.com</em></h1>
  11. <form method="post" action="inscr.php" id="frm_inscr">
  12. <p>
  13. <label for="mail">Pseudo</label> :
  14. <input type="text" name="pseudo" id="pseudo" placeholder="Ex: eric21" size="30" required/>
  15. </p>
  16. <p>
  17. <label for="mail">E-mail</label> :
  18. <input type="email" name="mail" id="mail" placeholder="Ex: eric21@free.fr" size="30" required/>
  19. </p>
  20. <p>
  21. <label for="mdp">Mot de passe</label> :
  22. <input type="password" name="mdp" id="mdp" size="30" required/>
  23. </p>
  24. <input type="submit" name="ok" id="ok" value="S'inscrire"/>
  25. </form>
  26. </section>
  27. <footer>
  28. <a href="index.html">Retour au menu</a>
  29. </footer>
  30. </body>
  31. </html>