-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
32 lines (20 loc) · 1.55 KB
/
dashboard.php
File metadata and controls
32 lines (20 loc) · 1.55 KB
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
<?php
session_start();
include('connection.php');
include('header.php');
include('navigation.php');
//<li style = "float:left; padding:5px;margin-left:25px;border:2px solid;"><a href="pages.php"><div class = "container"><img src = "pages.png" width="80px" height="80px" /><div class="overlay"><div class="text">Pages</div></div></div></a></li>
?>
<div style = "width:100%; float:left;">
<div style = "width:100%; float:left; margin: 100px 0; padding:10px;">
<ul class = "navigation" style = "border: 2px solid; padding: 10px;">
<li style = "float:left; padding:5px; border:2px solid;"><a href="accounts.php"><div class = "container"><img src = "accounts.png" width="80px" height="80px" /><div class="overlay"><div class="text">Accounts</div></div></div></a></li>
<li style = "float:left; padding:5px;border:2px solid;margin-left:25px;"><a href="pages.php"><div class = "container"><img src = "pages.png" width="80px" height="80px" /><div class="overlay"><div class="text">Pages</div></div></div></a></li>
<li style = "float:left; padding:5px;border:2px solid;margin-left:25px;"><a href="events.php"><div class = "container"><img src = "events.png" width="80px" height="80px" /><div class="overlay"><div class="text">Events</div></div></div></a></li>
<li style = "float:left; padding:5px;border:2px solid;margin-left:25px;"><a href="contacts.php"><div class = "container"><img src = "contact.png" width="80px" height="80px" /><div class="overlay"><div class="text">Contact Us</div></div></div></a></li>
</ul>
</div>
</div>
<?php
include('footer.php')
?>