2025-11-18 21:16:35 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title class="attribute-player_name">[Player name]</title>
|
|
|
|
|
<link rel="stylesheet" href="../assets/css/style.css">
|
|
|
|
|
<link rel="stylesheet" href="../public/assets/css/style.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="center">
|
2025-11-26 21:10:22 -05:00
|
|
|
<h2 class="attribute-PlayerName">[Player Name]</h2>
|
2025-11-18 21:16:35 -05:00
|
|
|
|
|
|
|
|
<table id="table">
|
|
|
|
|
<thead id="header">
|
|
|
|
|
<tr>
|
|
|
|
|
<td>Name</td>
|
|
|
|
|
<td>ID</td>
|
|
|
|
|
<td>Salary</td>
|
|
|
|
|
<td>Team</td>
|
|
|
|
|
<td>Position</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody id="results">
|
|
|
|
|
<tr>
|
2025-11-26 21:10:22 -05:00
|
|
|
<td class="attribute-PlayerName">[Name]</td>
|
|
|
|
|
<td class="attribute-PlayerID">[ID]</td>
|
|
|
|
|
<td class="attribute-TotalValue format-salary">[Salary]</td>
|
|
|
|
|
<td class="attribute-Team">[Team]</td>
|
|
|
|
|
<td class="attribute-Position">[Position]</td>
|
2025-11-18 21:16:35 -05:00
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
<p id="nomatch" style="display: none;">No matches found.</p>
|
|
|
|
|
|
2025-11-26 21:10:22 -05:00
|
|
|
<button id="watch">Watch Player</button>
|
|
|
|
|
|
2025-11-18 21:16:35 -05:00
|
|
|
<br>
|
|
|
|
|
|
2025-11-19 09:40:48 -05:00
|
|
|
<a href="#" onclick="if (history.length > 1) history.back(); else if (document.referrer) window.location.href = document.referrer; else window.location.href = '#';">Return to Player Search</a>
|
2025-11-18 21:16:35 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script type="module" src="/player.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|