-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAvatarMenu.php
More file actions
29 lines (25 loc) · 816 Bytes
/
AvatarMenu.php
File metadata and controls
29 lines (25 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php require_once 'Include/Load.php';
$session = App::getSession();
$link = App::getDatabase();
$user = App::getUser();
$user->restrict();
?>
<?php require_once 'Include/Header.php'; ?>
<div id="navBar">
<h2>NAVIGATE</h2>
<a href="SetAvatar.php" class="nav-links">
<span class="material-symbols-outlined">upload</span>
<span class="icon-text">Set Avatar</span>
</a>
<a href="DisplayAvatar.php" class="nav-links">
<span class="material-symbols-outlined">pan_zoom</span>
<span class="icon-text">Display Avatar</span>
</a>
<a href="DeleteAvatar.php" class="nav-links">
<span class="material-symbols-outlined">delete</span>
<span class="icon-text">Delete Avatar</span>
</a>
</div>
<?php require_once 'Include/Mode.php'; ?>
</body>
</html>