Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <h1>Afficher un bouton de réinitialisation</h1> <p>Cliquez sur le bouton de réinitialisation pour réinitialiser le formulaire.</p> <form action="https://www.w3schools.com/action_page.php"> <label for="email">Entrez votre e-mail :</label> <input type="email" id="email" name="email"><br><br> <label for="pin">Entrez un code PIN :</label> <input type="text" id="pin" name="pin" maxlength="4"><br><br> <input type="reset" value="Reset"> <input type="submit" value="Submit"> </form> </body> </html>