Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder 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 champ de mot de passe</h1> <form action="https://www.w3schools.com/action_page.php"> <label for="email">Email:</label> <input type="email" id="email" name="email"><br><br> <label for="pwd">Mot de passe :</label> <input type="password" id="pwd" name="pwd" minlength="8"><br><br> <input type="submit"> </form> </body> </html>