-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60af990
commit 35c5eb6
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |