Files
PasswordManager/public/home.html
RochesterX 344d46d89e Paydirt
2025-11-26 21:10:22 -05:00

54 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" href="../assets/css/style.css">
</head>
<body>
<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>
</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>
</div>
<div class="box se">
<p>Highest offense score</p>
</div>
</div>
<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>
</body>
</html>