-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtop.inc.php
56 lines (55 loc) · 2.45 KB
/
top.inc.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
require('admin/connection.inc.php');
require('admin/functions.inc.php');
?>
<!doctype html>
<html class="no-js" lang="">
<meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>User Dashboard</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/normalize.css">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/themify-icons.css">
<link rel="stylesheet" href="assets/css/pe-icon-7-filled.css">
<link rel="stylesheet" href="assets/css/flag-icon.min.css">
<link rel="stylesheet" href="assets/css/cs-skin-elastic.css">
<link rel="stylesheet" href="assets/css/style.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800' rel='stylesheet' type='text/css'>
</head>
<body>
<aside id="left-panel" class="left-panel">
<nav class="navbar navbar-expand-sm navbar-default">
<div id="main-menu" class="main-menu collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="menu-title">USER MENU</li>
<li class="menu-item-has-children dropdown">
<a href="userHome.php"> Dashboards </a>
</li>
<li class="menu-item-has-children dropdown">
<a href="user_manage_modules.php"> Add A Module </a>
</li>
<li class="menu-item dropdown">
<a href="logout.php"> Logout </a>
</li>
</ul>
</div>
</nav>
</aside>
<div id="right-panel" class="right-panel">
<header id="header" class="header" style="background-color: #784794;">
<a class="navbar-brand" href="userHome.php" style="color: white; font-weight: bold;">Student Engagement</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="top-right">
<div class="header-menu">
<div class="user-area dropdown float-right">
</div>
</div>
</div>
</header>