You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 1.3KB

3 years ago
12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=2.0">
  6. <title>Login</title>
  7. <link rel="stylesheet" text="text/css" href="styles.css">
  8. <script src="login.js"></script>
  9. </head>
  10. <body>
  11. <div class="main">
  12. <div class="container">
  13. <div class="header">
  14. <h1>Login</h1>
  15. </div>
  16. <form name="login" method="post" id="loginform">
  17. <div class="datasec">
  18. <input class="username" type="text" name="username" id="un" required placeholder="Username" autocomplete="off">
  19. </div>
  20. <div class="datasec">
  21. <input class="password" type="password" name="password" id="pw" required placeholder="Password">
  22. </div>
  23. <div class="buttons-container">
  24. <button class="button"
  25. type="submit"
  26. name="submit">
  27. <span id="loginText">Log In</span>
  28. </button>
  29. </div>
  30. </form>
  31. <button class="button" id="prev">
  32. <span>Preview</span>
  33. </button>
  34. </div>
  35. </div>
  36. </body>
  37. </html>