Spaces:
Sleeping
Sleeping
| <html> | |
| <head> | |
| <title>Login</title> | |
| <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <h2>Login</h2> | |
| {% if error %} | |
| <p class="error">{{ error }}</p> | |
| {% endif %} | |
| <form method="POST"> | |
| <input type="text" name="username" placeholder="Username" required><br> | |
| <input type="password" name="password" placeholder="Password" required><br> | |
| <button type="submit">Login</button> | |
| </form> | |
| <p>Don't have an account? <a href="{{ url_for('signup') }}">Sign up</a></p> | |
| </div> | |
| </body> | |
| </html> | |