161 lines
3.7 KiB
HTML
161 lines
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>登录页面</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Segoe UI', Arial, sans-serif;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
background: #f0f2f5;
|
|
}
|
|
|
|
.login-container {
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
width: 100%;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.login-header {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.login-header h1 {
|
|
color: #1a73e8;
|
|
font-size: 28px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.login-header p {
|
|
color: #666;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.form-group input {
|
|
width: 100%;
|
|
padding: 12px 15px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 6px;
|
|
font-size: 16px;
|
|
transition: border-color 0.3s;
|
|
}
|
|
|
|
.form-group input:focus {
|
|
outline: none;
|
|
border-color: #1a73e8;
|
|
box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
|
|
}
|
|
|
|
.form-group input:hover {
|
|
border-color: #1a73e8;
|
|
}
|
|
|
|
.options {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 25px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.remember-me {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.remember-me input {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.forgot-password {
|
|
color: #1a73e8;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.forgot-password:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.login-button {
|
|
width: 100%;
|
|
padding: 12px;
|
|
background: #1a73e8;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 6px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
transition: background 0.3s;
|
|
}
|
|
|
|
.login-button:hover {
|
|
background: #1557b0;
|
|
}
|
|
|
|
.signup-link {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
color: #666;
|
|
}
|
|
|
|
.signup-link a {
|
|
color: #1a73e8;
|
|
text-decoration: none;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.signup-link a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<div class="login-header">
|
|
<h1>欢迎登录</h1>
|
|
<p>请输入您的账号信息</p>
|
|
</div>
|
|
|
|
<form>
|
|
<div class="form-group">
|
|
<input type="text" placeholder="用户名/邮箱" required>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<input type="password" placeholder="密码" required>
|
|
</div>
|
|
|
|
<div class="options">
|
|
<label class="remember-me">
|
|
<input type="checkbox"> 记住我
|
|
</label>
|
|
<a href="#" class="forgot-password">忘记密码?</a>
|
|
</div>
|
|
|
|
<button type="submit" class="login-button">立即登录</button>
|
|
</form>
|
|
|
|
<div class="signup-link">
|
|
还没有账号?<a href="#">立即注册</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |