Guest User

Untitled

a guest
Mar 12th, 2019
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <html>
  2.  
  3.  
  4. <head>
  5. <title> Password </title>
  6. <script type="text/javascript">
  7. function toggle(target){
  8. var d=document;
  9. var pass=d.getElementById("password");
  10. var text=d.getElementById("showhide");
  11. if(text.innerHTML=='show'){
  12. pass.setAttribute('type','text');
  13. text.innerHTML='hide';}
  14. else
  15. {
  16. pass.setAttribute('type','password');
  17. text.innerHTML='show';
  18.  
  19. }
  20. }
  21.  
  22.  
  23.  
  24. </script>
  25. </head>
  26. <body style="background-color:grey">
  27. <form>
  28. UserName:&nbsp;&nbsp; <input type="text" name="textname" maxwidth=30>
  29. <br><br>
  30. Password:&nbsp;&nbsp; <input type="password" id="password" maxwidth=8>
  31. <br><br>
  32. <a href="#" onclick=toggle(password) id="showhide">show</a>
  33. </form>
  34. </body>
  35. </html>
Add Comment
Please, Sign In to add comment