Files
PayDirt/public/home.html

66 lines
1.8 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">
<h2>Paydirt</h2>
<a href="/search">Search Players</a>
<br>
</div>
<div class="header-right">
<a class="user-FirstName" href="/info">Welcome, %</a>
<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">
<p>Favorites</p>
<table class="body" id="favorites">
<thead>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="box ne">
<p>Highest contracts</p>
<table class="body" id="highest">
<thead>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="box sw">
<p>Highest paydirt score</p>
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">
<p>Highest offense score</p>
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>