index.html 891 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=\, initial-scale=1.0">
  7. <link rel="stylesheet" href="css/style.css">
  8. <title>HW11</title>
  9. </head>
  10. <body>
  11. <div class="thepassword">
  12. <input type="password" class="password" placeholder="Password">
  13. <label >
  14. <input type="checkbox" class="show-password"> See the password
  15. </label>
  16. </div>
  17. <div>
  18. <form name="theform" style="margin-top: 30px">
  19. <input type="text" placeholder="Login" onKeyup="checkform()" />
  20. <input type="text" placeholder="Password" onKeyup="checkform()" />
  21. <input id="submitbutton" type="submit" disabled="disabled" value="Button" />
  22. </form>
  23. </div>
  24. <script src='js/main.js'></script>
  25. </body>
  26. </html>