nagasurendra commited on
Commit
cbe8552
·
verified ·
1 Parent(s): ed19666

Create login.html

Browse files
Files changed (1) hide show
  1. templates/login.html +21 -0
templates/login.html ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Login Page</h1>
10
+ <form method="post">
11
+ <label for="email">Email:</label><br>
12
+ <input type="email" id="email" name="email" required><br><br>
13
+
14
+ <label for="password">Password:</label><br>
15
+ <input type="password" id="password" name="password" required><br><br>
16
+
17
+ <button type="submit">Login</button><br><br>
18
+ <a href="/signup">Don't have an account? Create one here</a>
19
+ </form>
20
+ </body>
21
+ </html>