This commit is contained in:
RochesterX
2025-11-12 10:13:24 -05:00
parent d5b0f97adb
commit 6e820464d5
9761 changed files with 706938 additions and 0 deletions

26
public/home.html Normal file
View File

@@ -0,0 +1,26 @@
<!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>