-
Notifications
You must be signed in to change notification settings - Fork 0
/
limbo-admin.php
35 lines (34 loc) · 989 Bytes
/
limbo-admin.php
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
29
30
31
32
33
34
35
<!--
Admin Panel for Limbo, accessed from limbo-admin-login.php
Made by Luciano Mattoli & Andrew Masone
-->
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Admin Portal</title>
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<!-- Header -->
<div class = 'header'>
<span class = 'titles'>
<a href="limbo.php"><button type="submit">Home</button></a>
<a href="limbo-lost.php"><button type="submit">Lost Something</button></a>
<a href="limbo-found.php"><button type="submit">Found Something</button></a>
</span>
<h1>Admin Portal</h1>
<p>If you're looking to do admin functions, this is the place!</p>
</div>
<!-- Admin functions -->
<div class = 'body'>
<table id = 'adminHome'>
<tr>
<td><a href="limbo-admin-edit-table.php">Edit Tables</a></td>
</tr>
<tr>
<td><a href="limbo-admin-edit-users.php">Edit Users</a></td>
</tr>
</table>
</div>
</body>
</html>