| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <link rel="stylesheet" href="style.css" />
- <title>DMonde - Inscription</title>
- </head>
- <body>
- <section>
- <h1>Inscrivez vous sur <em class="dm">DMonde.com</em></h1>
- <form method="post" action="inscr.php" id="frm_inscr">
- <p>
- <label for="mail">Pseudo</label> :
- <input type="text" name="pseudo" id="pseudo" placeholder="Ex: eric21" size="30" required/>
- </p>
- <p>
- <label for="mail">E-mail</label> :
- <input type="email" name="mail" id="mail" placeholder="Ex: eric21@free.fr" size="30" required/>
- </p>
- <p>
- <label for="mdp">Mot de passe</label> :
- <input type="password" name="mdp" id="mdp" size="30" required/>
- </p>
-
- <input type="submit" name="ok" id="ok" value="S'inscrire"/>
-
- </form>
- </section>
-
- <footer>
- <a href="index.html">Retour au menu</a>
- </footer>
- </body>
-
- </html>
|