| 1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Authorization</title>
- <script type="module" src="../javascripts/utils.js" async></script>
- <script type="module" src="../javascripts/auth.js" async></script>
- <link rel="stylesheet" href="../stylesheets/style.css">
- <link rel="stylesheet" href="../stylesheets/auth.css">
- </head>
- <body>
- <div class="content">
- <div class="container">
- <div id="login-form" class="form">
- <h2>Authorization</h2>
- <div>
- <div class="input-group">
- <label for="login-email">Email</label>
- <input type="email" id="login-email" placeholder="Enter your email" required>
- </div>
- <div class="input-group">
- <label for="login-password">Password</label>
- <input type="password" id="login-password" placeholder="Enter your password" required>
- </div>
- <button class="btn" id="btn-login">Login</button>
- <button class="btn" id="btn-register">Register</button>
- <p class="msg-error" id="login-error"></p>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|