Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Loginpage.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container1">
<form action="http://127.0.0.1:5000/login" method="post">
<h1>Login</h1>
<input type="text" name="username" id="username" placeholder="Username" required><br>
<input type="password" name="password" id="password" placeholder="Password" required><br>
<input type="submit" value="Login" id="Login"><a href="#">Forgot Password</a><br>
<h1>Don't have account?</h1><a class="createaccount" href="another.html">Create Account</a>
</form>

</div>
</body>
</html>