Compare commits

...

7 Commits

Author SHA1 Message Date
maxiaofang 71f266c2a3 Add User Profile Page (#8) 2 weeks ago
maxiaofang 1d130ccf4c Merge pull request 'Add User Login Pa' (#4) from feature into develop 3 weeks ago
maxiaofang 9d946a989c Merge branch 'develop' into feature 3 weeks ago
maxiaofang c91e6da251 Feat: Add link to login page in READM 3 weeks ago
maxiaofang cd5747bcd7 Merge branch 'develop' into feature 3 weeks ago
maxiaofang a0fea4e241 Feat: Add link to login page in README 3 weeks ago
maxiaofang 511b9d1f40 Feat: Add basic login.html file 3 weeks ago
  1. 2
      README.md
  2. 14
      login.html/login.html.txt
  3. 22
      profile.html

2
README.md

@ -1,2 +1,4 @@
# se-team-project
# The SE Team Project (Modified by Dev A)
Welcome! Please [Login Here](login.html).

14
login.html/login.html.txt

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
</head>
<body>
<h2>User Login</h2>
<form>
Username: <input type="text" name="username"><br>
Password: <input type="password" name="password"><br>
<input type="submit" value="Login">
</form>
</body>
</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