index.html 673 B

123456789101112131415161718192021222324
  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=device-width, initial-scale=1.0">
  7. <title>HW_JS_01</title>
  8. <link rel="stylesheet" href="css/main.css">
  9. </head>
  10. <body>
  11. <form action="#">
  12. <h2>Form</h2>
  13. <input type="text" name="Account" id="acc" placeholder="Enter login">
  14. <input type="password" name="Password" id="pass" placeholder="Enter password">
  15. <input type="button" value="Log in" onclick="verification()">
  16. <div id="result"></div>
  17. </form>
  18. <script src="/js/main.js"></script>
  19. </body>
  20. </html>