Files
PasswordManager/public/home.html
RochesterX 6e820464d5 Initial
2025-11-12 10:13:24 -05:00

27 lines
744 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>
<a href="search.html">Search Users</a>
<br>
<a href="info.html">Personal Information</a>
<br>
<a class="visibilityRestriction" data-role="professor" href="sections.html">Manage My Sections</a>
<br>
<button id="logoutButton">Log Out</button>
<br>
<button id="deleteButton">Delete Account</button>
<script type="module" src="logout.js"></script>
<script type="module" src="delete.js"></script>
<script type="module" src="visibility.js"></script>
</div>
</body>
</html>