Mini Kabibi Habibi
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - Wlcome to My first Website</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column; /* Ensures the title is above the form */
height: 100vh;
margin: 0;
}
.page-title {
text-align: center;
font-size: 40px;
font-weight: bold;
margin-bottom: 20px; /* Space between title and login form */
color: #333;
}
.login-container {
background-color: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
}
h1 {
text-align: center;
color: #333;
}
label {
display: block;
margin: 10px 0 5px;
font-weight: bold;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 8px;
}
button {
width: 100%;
padding: 10px;
background-color: #8B0000; /* Dark Red */
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #a60000; /* Slightly lighter dark red for hover effect */
}
.forgot-password {
text-align: center; /* This centers the link horizontally */
margin-top: 10px;
font-size: 14px;
}
.forgot-password a {
color: #8B0000;
text-decoration: none;
}
.forgot-password a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="page-title">ICT Unit Outdoor Activities</div>
<br>
<br>
<div class="login-container">
<h1>Login</h1>
<form action="#" method="POST">
<label for="username">Username</label>
<input type="text" id="username" name="username" placeholder="Enter your username" required>
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Enter your password" required>
<button type="submit">Login</button>
<div class="forgot-password">
<a href="#">Forgot Password?</a>
</div>
</form>
</div>
</body>
</html>