| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Sign In</title> | |
| </head> | |
| <body> | |
| <h1>Sign In Page</h1> | |
| <p>This is a placeholder for the sign-in page.</p> | |
| <form action="/signin" method="post"> | |
| <label for="username">Username:</label> | |
| <input type="text" id="username" name="username" required> | |
| <br><br> | |
| <label for="password">Password:</label> | |
| <input type="password" id="password" name="password" required> | |
| <br><br> | |
| <button type="submit">Sign In</button> | |
| </form> | |
| </body> | |
| </html> |