Browse Source
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
1 changed files with 22 additions and 0 deletions
@ -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…
Reference in new issue