DSatishchandra commited on
Commit
cae4e8e
·
verified ·
1 Parent(s): d7849fd

Create login.html

Browse files
Files changed (1) hide show
  1. templates/login.html +27 -0
templates/login.html ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <link rel="stylesheet" href="/static/style.css">
8
+ </head>
9
+ <body>
10
+ <div class="container">
11
+ <h1>Login</h1>
12
+ <form id="loginForm">
13
+ <label for="email">Email</label>
14
+ <input type="email" id="email" name="email" required>
15
+
16
+ <label for="password">Password</label>
17
+ <input type="password" id="password" name="password" required>
18
+
19
+ <button type="submit">Login</button>
20
+ </form>
21
+ <p id="loginMessage"></p>
22
+ <button onclick="window.location.href='/'">Back</button>
23
+ </div>
24
+
25
+ <script src="/static/script.js"></script>
26
+ </body>
27
+ </html>