Skip to content

Commit

Permalink
Create login.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohit-R-Rao authored Oct 1, 2023
1 parent 60af990 commit 35c5eb6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="login.css">
</head>
<body>
<div class="login-container">
<h2>Login</h2>
<form action="/submit-login" method="post">
<div class="input-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" required>
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit">Login</button>
</form>
</div>
</body>
</html>

0 comments on commit 35c5eb6

Please sign in to comment.