Add User Profile Page #8

Merged
why merged 3 commits from feature/profile-page into develop 2 weeks ago
  1. 22
      profile.html

22
profile.html

@ -0,0 +1,22 @@
<!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 >
</div>
</body>
</html>
Review

@maxiaofang
这是一个严重的安全漏洞!密码(即使是临时的)绝对不能出现在前端代码的任何地方,包括注释中!请立即移除。

@maxiaofang 这是一个严重的安全漏洞!密码(即使是临时的)绝对不能出现在前端代码的任何地方,包括注释中!请立即移除。
Review

@Yaoaijia :@ 感谢审查!安全漏洞已修复,请再次审查

@Yaoaijia :@<yaoaijia> 感谢审查!安全漏洞已修复,请再次审查
Loading…
Cancel
Save