| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| <title>Login</title> |
| <link rel="stylesheet" href="style.css" /> |
| </head> |
| <body> |
| <div class="container"> |
| <h2>Sign In</h2> |
| <form id="loginForm"> |
| <input type="text" id="loginUsername" placeholder="Username" required /> |
| <input type="password" id="loginPassword" placeholder="Password" required /> |
| <button type="submit">Login</button> |
| </form> |
| <p id="loginMessage"></p> |
| <p class="switch-page"> |
| Don't have an account? <a href="signup.html">Sign up here</a> |
| </p> |
| </div> |
|
|
| <script src="script.js"></script> |
| </body> |
| </html> |
|
|