DSatishchandra commited on
Commit
dfb07fe
·
verified ·
1 Parent(s): 33eba6b

Create templates/login.html

Browse files
Files changed (1) hide show
  1. templates/login.html +20 -0
templates/login.html ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Login</title>
5
+ </head>
6
+ <body>
7
+ <h1>Biryani Hub - Login</h1>
8
+ <form method="POST">
9
+ <label>Email:</label>
10
+ <input type="email" name="email" required><br>
11
+ <label>Password:</label>
12
+ <input type="password" name="password" required><br>
13
+ <button type="submit">Login</button>
14
+ <p><a href="/signup">Don't have an account? Signup here.</a></p>
15
+ {% if error %}
16
+ <p style="color: red;">{{ error }}</p>
17
+ {% endif %}
18
+ </form>
19
+ </body>
20
+ </html>