Browse Source

Add User Profile Page (#8)

This PR adds the basic profile.html page for users.

Fixes #3

Reviewed-on: http://47.114.99.254:3000/why/se-team-project/pulls/8
Reviewed-by: Yaoaijia <jerrytian6@outlook.com>
Co-authored-by: maxiaofang <2052523195@qq.com>
Co-committed-by: maxiaofang <2052523195@qq.com>
develop
maxiaofang 2 weeks ago
committed by why
parent
commit
71f266c2a3
  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>
Loading…
Cancel
Save