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
57 changes: 57 additions & 0 deletions login2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sample Login</title>
<style>
body { font-family: Arial, sans-serif; background: #f4f4f4; }
.login-container {
width: 300px;
margin: 80px auto;
padding: 24px;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.login-container h2 {
text-align: center;
margin-bottom: 18px;
}
.login-container input[type="text"],
.login-container input[type="password"] {
width: 100%;
padding: 8px;
margin: 8px 0 16px 0;
border: 1px solid #ccc;
border-radius: 4px;
}
.login-container button {
width: 100%;
padding: 10px;
background: #0078d7;
color: #fff;
border: none;
border-radius: 4px;
font-size: 16px;
}
.login-container button:hover {
background: #005fa3;
}
</style>
</head>
<body>
<div class="login-container">
<h2>Login</h2>
<form>
<label for="email">Email</label>
<input type="email" id="email" name="email" required>


<label for="password">Password</label>
<input type="password" id="password" name="password" required>

<button type="submit">Login.</button>
</form>
</div>
</body>
</html>