Files
PayDirt/public/player.html
RochesterX 9e88712e9f Search
2025-11-18 21:16:35 -05:00

43 lines
1.3 KiB
HTML

<!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">
<h2 class="attribute-player_name">[Player Name]</h2>
<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>
<td class="attribute-player_name">[Name]</td>
<td class="attribute-player_id">[ID]</td>
<td class="attribute-salary format-salary">[Salary]</td>
<td class="attribute-team_name">[Team]</td>
<td class="attribute-position">[Position]</td>
</tr>
</tbody>
</table>
<p id="nomatch" style="display: none;">No matches found.</p>
<br>
<a href="/search">Return to Player Search</a>
</div>
<script type="module" src="/player.js"></script>
</body>
</html>