Subbu1304 commited on
Commit
283ac75
·
verified ·
1 Parent(s): 6215aa5

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +26 -0
templates/index.html ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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" />
6
+ <title>Login Page</title>
7
+ <link rel="stylesheet" href="style.css" />
8
+ </head>
9
+ <body>
10
+ <div class="login-container">
11
+ <h2>Login</h2>
12
+ <form id="loginForm">
13
+ <label for="username">Username</label>
14
+ <input type="text" id="username" placeholder="Enter username" required />
15
+
16
+ <label for="password">Password</label>
17
+ <input type="password" id="password" placeholder="Enter password" required />
18
+
19
+ <button type="submit">Login</button>
20
+ <p id="message"></p>
21
+ </form>
22
+ </div>
23
+
24
+ <script src="script.js"></script>
25
+ </body>
26
+ </html>