Compare commits
7 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
71f266c2a3 | 2 weeks ago |
|
|
1d130ccf4c | 3 weeks ago |
|
|
9d946a989c | 3 weeks ago |
|
|
c91e6da251 | 3 weeks ago |
|
|
cd5747bcd7 | 3 weeks ago |
|
|
a0fea4e241 | 3 weeks ago |
|
|
511b9d1f40 | 3 weeks ago |
3 changed files with 38 additions and 0 deletions
@ -1,2 +1,4 @@ |
|||||
# se-team-project |
# se-team-project |
||||
|
# The SE Team Project (Modified by Dev A) |
||||
|
Welcome! Please [Login Here](login.html). |
||||
|
|
||||
|
|||||
@ -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> |
||||
@ -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