Spaces:
Sleeping
Sleeping
| <html> | |
| <head> | |
| <title>Login</title> | |
| </head> | |
| <body> | |
| <h1>Biryani Hub - Login</h1> | |
| <form method="POST"> | |
| <label>Email:</label> | |
| <input type="email" name="email" required><br> | |
| <label>Password:</label> | |
| <input type="password" name="password" required><br> | |
| <button type="submit">Login</button> | |
| <p><a href="/signup">Don't have an account? Signup here.</a></p> | |
| {% if error %} | |
| <p style="color: red;">{{ error }}</p> | |
| {% endif %} | |
| </form> | |
| </body> | |
| </html> | |