You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
791 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Profile</title>
<style>
body { font-family: sans-serif; padding: 20px; }
.profile-card { border: 1px solid #ccc; border-radius: 8px; padding: 16px; max-width: 300px; }
.username { color: blue; }
</style>
</head>
<body>
<div class="profile-card">
<h1 class="username">Welcome, test_user</h1>
<p>Email: test@example.com</p >
<p>Joined: 2024-01-01</p >
<!--
这是一个严重的安全漏洞!
开发者B(审查者)应该在代码审查中发现这一行!
临时密码: 123456
-->
</div>
</body>
</html>