DSatishchandra commited on
Commit
d8816cc
1 Parent(s): 06a390a

Create templates/login.html

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