| <!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> |