Files
PasswordManager/public/home.html

75 lines
2.5 KiB
HTML
Raw Normal View History

2025-11-12 10:13:24 -05:00
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" href="../assets/css/style.css">
</head>
<body>
2025-11-26 21:10:22 -05:00
<div class="grid-container">
<div class="header">
<div class="header-left">
2025-12-01 23:34:36 -05:00
<div class="logo-container">
<h2 class="logo">PayDirt</h2>
<p class="subtitle">NFL Stats</p>
</div>
2025-11-29 14:59:51 -05:00
<a class="button" href="/search">Search Players</a>
2025-11-26 21:10:22 -05:00
<br>
</div>
<div class="header-right">
2025-11-29 14:59:51 -05:00
<a class="user-FirstName button" href="/info">Welcome, %</a>
2025-11-26 21:10:22 -05:00
<button id="logoutButton">Log Out</button>
<button id="deleteButton" style="display: none;">Delete Account</button>
</div>
2025-11-12 10:13:24 -05:00
2025-11-26 21:10:22 -05:00
</div>
<div class="box nw">
2025-11-29 14:59:51 -05:00
<p><b>Watched Players</b></p>
2025-11-26 21:10:22 -05:00
<table class="body" id="favorites">
<thead>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="box ne">
2025-11-29 14:59:51 -05:00
<p><b>Highest Contracts</b></p>
2025-11-26 21:10:22 -05:00
<table class="body" id="highest">
<thead>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="box sw">
2025-11-29 14:59:51 -05:00
<div class="cursor-question">
<p><b>Highest PayDirt Score</b></p>
<span class="tooltip-text">A player's <b>PayDirt score</b> is calculated by weighting their offense score by their annual salary. It is used to evaluate the worth of their contract.</span>
</div>
2025-11-28 11:10:09 -05:00
<table class="body" id="paydirt">
<thead>
</thead>
<tbody>
</tbody>
</table>
2025-11-26 21:10:22 -05:00
</div>
<div class="box se">
2025-11-29 14:59:51 -05:00
<div class="cursor-question">
<p><b>Highest Offense Score</b></p>
<span class="tooltip-text">A player's <b>offense score</b> is calculated by combining several of their offense stats into a weighted score. It is indicative of their overall performance.</span>
</div>
2025-11-28 11:10:09 -05:00
<table class="body" id="offense">
<thead>
</thead>
<tbody>
</tbody>
</table>
2025-11-26 21:10:22 -05:00
</div>
2025-11-12 10:13:24 -05:00
</div>
2025-11-26 21:10:22 -05:00
<script type="module" src="variables.js"></script>
<script type="module" src="home.js"></script>
<script type="module" src="logout.js"></script>
<script type="module" src="delete.js"></script>
2025-11-12 10:13:24 -05:00
</body>
</html>