Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# practice-lab-version-controlling

## This is a practice repository for learning Git workflow
## This is a practice repository for learning Git workfloww

### Created By : Anjana
### Created At : 15th Sept, 2025
61 changes: 13 additions & 48 deletions login.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,56 +2,21 @@
<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>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
</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>
<h1>Welcome</h1>
<form action="#" method="post">
<div>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
</div>
<div>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>

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