index.html 566 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>login</title>
  5. <meta charset="UTF-8" />
  6. </head>
  7. <body>
  8. <script src="main.js"></script>
  9. <div class="container">
  10. <div class="main">
  11. <form id="form_id" method="post" name="myform">
  12. <label>Login :</label>
  13. <input type="text" name="username" id="username" />
  14. <label>Password :</label>
  15. <input type="password" name="password" id="password" />
  16. <input type="button" value="Login" id="submit" onclick="validate()" />
  17. </form>
  18. </body>
  19. </html>