Zeige das Passwort |
Geben Sie einen Namen in das rote Feld ein und suchen Sie einen Namen in der Tabelle |
So sieht´s aus |
Password: Zeige das Password |
Quellcode |
<html>
<head> <style type="text/css">Hier nichts</style> </head> <body> Password: <input type="password" value="Da gugste" id="myInput"/><br/><br/> <input type="checkbox" onclick="myFunction()"/>Zeige das Password <script> function myFunction() { var x = document.getElementById("myInput"); if (x.type === "password") { x.type = "text"; } else { x.type = "password"; } } </script> </body> </html> |
Kontakt Datenschutz Impressum |