-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
6 changed files
with
173 additions
and
64 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
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
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
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
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 |
---|---|---|
@@ -1,30 +1,44 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | ||
<title>Document</title> | ||
<link href="https://fonts.googleapis.com/css2?family=Livvic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="/style.css"> | ||
</head> | ||
<body> | ||
<div class ="login-box"> | ||
<h1>log in</h1> | ||
|
||
<div class = "login-input-box"> | ||
<form action="/login" method="post"> | ||
<label for="username">Username</label> | ||
<input type="text" placeholder="Enter Username" name="username" required> | ||
|
||
<label for="password">Password</label> | ||
<input type="password" placeholder="Enter Password" name="password" required> | ||
|
||
<button type="submit">Login</button> | ||
</form> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Livvic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link rel="stylesheet" href="/style.css" /> | ||
</head> | ||
<body> | ||
<div class="login-box"> | ||
<h1>log in</h1> | ||
|
||
<div class="login-input-box"> | ||
<form action="/login" method="post"> | ||
<label for="username">Username</label> | ||
<input | ||
type="text" | ||
placeholder="Enter Username" | ||
name="username" | ||
required | ||
/> | ||
|
||
<label for="password">Password</label> | ||
<input | ||
type="password" | ||
placeholder="Enter Password" | ||
name="password" | ||
required | ||
/> | ||
|
||
<button type="submit">Login</button> | ||
<p class="not-signup"> | ||
Not registered yet? <a href="/signup">Sign up</a> | ||
</p> | ||
</form> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.