auth.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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>Authorization</title>
  7. <script type="module" src="../javascripts/utils.js" async></script>
  8. <script type="module" src="../javascripts/auth.js" async></script>
  9. <link rel="stylesheet" href="../stylesheets/style.css">
  10. <link rel="stylesheet" href="../stylesheets/navbar.css">
  11. <link rel="stylesheet" href="../stylesheets/auth.css">
  12. </head>
  13. <body>
  14. <div class="content">
  15. <div class="container">
  16. <div id="login-form" class="form">
  17. <h2>Authorization</h2>
  18. <div>
  19. <div class="input-group">
  20. <label for="login-email">Email</label>
  21. <input type="email" id="login-email" placeholder="Enter your email" required>
  22. </div>
  23. <div class="input-group">
  24. <label for="login-password">Password</label>
  25. <input type="password" id="login-password" placeholder="Enter your password" required>
  26. </div>
  27. <button class="btn" id="btn-login">Login</button>
  28. <button class="btn" id="btn-register">Register</button>
  29. <p class="msg-error" id="login-error"></p>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. </body>
  35. </html>