forked from Jaimin-Kundal/QuickTeam-CanYouHackIt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam_details.html
More file actions
27 lines (24 loc) · 945 Bytes
/
team_details.html
File metadata and controls
27 lines (24 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team Details</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Inter:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/team_details.css">
</head>
<body>
<main class="team-details-container">
<h2 class="page-title">Team Details</h2>
<div class="team-card">
<p><b>Team Name:</b> <span id="teamName" class="team-name">Loading...</span></p>
<p><b>Leader:</b> <span id="leader"></span></p>
<p><b>Members:</b> <span id="members"></span></p>
<p><b>Created At:</b> <span id="createdAt"></span></p>
</div>
<a id="backToEvent" href="event-list.html" class="back-btn">← Back to Events</a>
</main>
<!-- JS -->
<script type="module" src="js/team_details.js"></script>
</body>
</html>