index.html 681 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html lang='en'>
  3. <head>
  4. <meta charset='UTF-8' />
  5. <meta name='viewport' content='width=device-width, initial-scale=1.0' />
  6. <title>Home Work 1 JS</title>
  7. <link rel="stylesheet" href="all.css">
  8. </head>
  9. <body>
  10. <h1>Home Work 1</h1>
  11. <form id='form' action="#" class="form">
  12. <input id='login' type='text' placeholder='login' name='login' required/>
  13. <input id='password' type='password' placeholder='password' name='password' required/>
  14. <button id='check' class='btn' type='submit'>Login</button>
  15. </form>
  16. <script src='index.js'></script>
  17. </body>
  18. </html>