File size: 2,592 Bytes
f1dde13 cb91a4e f1dde13 cb91a4e f1dde13 cb91a4e f1dde13 cb91a4e f1dde13 cb91a4e f1dde13 cb91a4e f1dde13 cb91a4e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Domain Key 测试页面</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f0f0;
margin: 0;
}
.login-form {
background: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
width: 300px;
}
.form-group {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 8px;
font-weight: bold;
font-size: 14px;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
box-sizing: border-box;
}
input:focus {
outline: none;
border-color: #4a4a4a;
}
button {
width: 100%;
padding: 12px;
background-color: #4a4a4a;
color: white;
border: none;
border-radius: 4px;
font-size: 14px;
cursor: pointer;
}
button:hover {
background-color: #333;
}
h2 {
margin-top: 0;
margin-bottom: 24px;
color: #333;
text-align: center;
}
</style>
</head>
<body>
<div class="login-form">
<h2>登录测试</h2>
<div class="form-group">
<label for="username">用户名</label>
<input type="text" id="username" name="username" placeholder="输入用户名">
</div>
<div class="form-group">
<label for="password">密码</label>
<input type="password" id="password" name="password" placeholder="输入密码">
</div>
<button type="submit">登录</button>
</div>
<script>
// 阻止表单提交,仅用于测试
document.querySelector('button').addEventListener('click', function(e) {
e.preventDefault();
console.log('用户名:', document.getElementById('username').value);
console.log('密码:', document.getElementById('password').value);
});
</script>
</body>
</html> |