<!DOCTYPE html>
<html>
<head>
<title>郵箱賬號登錄</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
color: #111111;
margin: 0;
padding: 0;
h1 {
text-align: center;
margin-top: 50px;
form {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
label {
display: block;
margin-bottom: 10px;
font-size: 18px;
color: #333333;
input[type="text"], input[type="password"] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
font-size: 16px;
border: none;
border-radius: 5px;
input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
input[type="submit"]:hover {
background-color: #45a049;
</style>
</head>
<body>
<h1>郵箱賬號登錄</h1>
<form>
<label for="username">用戶名:</label>
<input type="text" id="username" name="username" required>
<label for="password">密碼:</label>
<input type="password" id="password" name="password" required>
<input type="submit" value="登錄">
</form>
<p>如果用戶名或密碼不正確,請重新輸入。</p>
</body>
</html>