Files
PasswordManager/public/player.html
RochesterX 711380db2a Player
2025-11-28 13:54:57 -05:00

56 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title class="attribute-PlayerName">[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>
<div class="info-container">
<div class="info">
<p><b>Position:</b></p>
<p class="attribute-Position"></p>
</div>
<div class="info">
<p><b>Team:</b></p>
<p class="attribute-Team"></p>
</div>
<div class="info">
<p><b>Height:</b></p>
<p class="attribute-Height"></p>
</div>
<div class="info">
<p><b>Weight:</b></p>
<p class="attribute-Weight"></p>
</div>
</div>
<table id="overview">
<thead></thead>
<tbody></tbody>
</table>
<button id="watch">Watch Player</button>
<a href="#" onclick="if (history.length > 1) history.back(); else if (document.referrer) window.location.href = document.referrer; else window.location.href = '#';">Back</a>
<button id="showStats">Show Full Stats</button>
<table id="stats" style="display: none;">
<thead></thead>
<tbody></tbody>
</table>
<p id="nomatch" style="display: none;">No matches found.</p>
<br>
</div>
<script type="module" src="/player.js"></script>
</body>
</html>