DSatishchandra commited on
Commit
85714e5
·
verified ·
1 Parent(s): b923e7e

Create login_page.html

Browse files
Files changed (1) hide show
  1. templates/login_page.html +20 -0
templates/login_page.html ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 - BiryaniHub</title>
7
+ </head>
8
+ <body>
9
+ <h1>Login</h1>
10
+ <form method="POST">
11
+ <label for="email">Email:</label><br>
12
+ <input type="email" id="email" name="email"><br><br>
13
+
14
+ <label for="phone">Phone:</label><br>
15
+ <input type="text" id="phone" name="phone"><br><br>
16
+
17
+ <button type="submit">Login</button>
18
+ </form>
19
+ </body>
20
+ </html>