Files
PasswordManager/public/player.html
RochesterX 881c057b6a Back
2025-11-28 11:15:58 -05:00

45 lines
1.4 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-PlayerName">[Player Name]</h2>
<table id="table">
<thead id="header">
<tr>
<td>Name</td>
<td>ID</td>
<td>Contract</td>
<td>Team</td>
<td>Position</td>
</tr>
</thead>
<tbody id="results">
<tr>
<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>
</tr>
</tbody>
</table>
<p id="nomatch" style="display: none;">No matches found.</p>
<button id="watch">Watch Player</button>
<br>
<a href="#" onclick="if (history.length > 1) history.back(); else if (document.referrer) window.location.href = document.referrer; else window.location.href = '#';">Back</a>
</div>
<script type="module" src="/player.js"></script>
</body>
</html>