nagasurendra commited on
Commit
626d2c5
·
verified ·
1 Parent(s): 990ea8d

Create templates/login.html

Browse files
Files changed (1) hide show
  1. templates/login.html +24 -0
templates/login.html ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Login Page</title>
7
+ <link rel="stylesheet" href="../static/css/styles.css">
8
+ </head>
9
+ <body>
10
+ <div class="container">
11
+ <h1>Login to Biryani Hub</h1>
12
+ <form id="login-form">
13
+ <label for="email">Email</label>
14
+ <input type="email" id="email" name="email" placeholder="Enter your email" required>
15
+
16
+ <label for="password">Password</label>
17
+ <input type="password" id="password" name="password" placeholder="Enter your password" required>
18
+
19
+ <button type="submit">Login</button>
20
+ </form>
21
+ <p>Don't have an account? <a href="signup.html">Create one</a></p>
22
+ </div>
23
+ </body>
24
+ </html>