1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=\, initial-scale=1.0">
- <link rel="stylesheet" href="css/style.css">
- <title>HW11</title>
- </head>
- <body>
- <div class="thepassword">
- <input type="password" class="password" placeholder="Password">
- <label >
- <input type="checkbox" class="show-password"> See the password
- </label>
- </div>
- <div>
- <form name="theform" style="margin-top: 30px">
- <input type="text" placeholder="Login" onKeyup="checkform()" />
- <input type="text" placeholder="Password" onKeyup="checkform()" />
- <input id="submitbutton" type="submit" disabled="disabled" value="Button" />
- </form>
- </div>
- <script src='js/main.js'></script>
- </body>
- </html>
|