Files
PayDirt/public/home.html
RochesterX 9e88712e9f Search
2025-11-18 21:16:35 -05:00

25 lines
690 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" href="../assets/css/style.css">
</head>
<body>
<div class="center">
<h2>Home</h2>
<h3 class="user-FirstName">Welcome, %</h3>
<a href="/search">Search Players</a>
<br>
<a href="/info">Personal Information</a>
<br>
<button id="logoutButton">Log Out</button>
<br>
<button id="deleteButton" style="display: none;">Delete Account</button>
<script type="module" src="variables.js"></script>
<script type="module" src="logout.js"></script>
<script type="module" src="delete.js"></script>
</div>
</body>
</html>