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