Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Simple Login Page</title> | |
| <!-- Link to the CSS file --> | |
| <link rel="stylesheet" href="style.css" /> | |
| </head> | |
| <body> | |
| <!-- Login container --> | |
| <div class="login-container"> | |
| <h2>Login</h2> | |
| <!-- Login form --> | |
| <form id="loginForm"> | |
| <!-- Username input --> | |
| <label for="username">Username:</label> | |
| <input type="text" id="username" name="username" required /> | |
| <!-- Password input --> | |
| <label for="password">Password:</label> | |
| <input type="password" id="password" name="password" required /> | |
| <!-- Submit button --> | |
| <button type="submit">Login</button> | |
| </form> | |
| <!-- Placeholder to show login result --> | |
| <p id="message"></p> | |
| </div> | |
| <!-- Link to JavaScript file --> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> | |