-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
69 lines (61 loc) · 1.06 KB
/
dashboard.php
File metadata and controls
69 lines (61 loc) · 1.06 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
include( 'includes/database.php' );
include( 'includes/config.php' );
include( 'includes/functions.php' );
secure();
include( 'includes/header.php' );
?>
<ul id="dashboard">
<li>
<a href="pages.php">
<i class="fas fa-chalkboard fa-3x"></i>
<br>
Learning Pages
</a>
</li>
<li>
<a href="evaluations.php">
<i class="fas fa-quote-left fa-3x"></i>
<br>
Evaluations
</a>
</li>
<li>
<a href="articles.php">
<i class="fas fa-newspaper fa-3x"></i>
<br>
Articles
</a>
</li>
<li>
<a href="tools.php">
<i class="fas fa-tools fa-3x"></i>
<br>
Tools
</a>
</li>
<li>
<a href="social.php">
<i class="fas fa-share-alt-square fa-3x"></i>
<br>
Social
</a>
</li>
<li>
<a href="topics.php">
<i class="fas fa-columns fa-3x"></i>
<br>
Topics
</a>
</li>
<li>
<a href="users.php">
<i class="fas fa-user fa-3x"></i>
<br>
Users
</a>
</li>
</ul>
<?php
include( 'includes/footer.php' );
?>