-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
131 lines (127 loc) · 5.97 KB
/
Copy pathheader.php
File metadata and controls
131 lines (127 loc) · 5.97 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<?php session_start();
if(strcmp($_SESSION['set'],"set"))
{
session_destroy();
header("Location: index.php?invalid=1");
}
?>
<head>
<!--
Engineered, Deployed and Maintained by Raghavendra Singh Dasila, Full Stack Engineer
-->
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>The Content Talks</title>
<!-- plugins:css -->
<link rel="stylesheet" href="vendors/iconfonts/mdi/css/materialdesignicons.min.css">
<link rel="stylesheet" href="vendors/css/vendor.bundle.base.css">
<link rel="stylesheet" href="vendors/css/vendor.bundle.addons.css">
<!-- endinject -->
<!-- plugin css for this page -->
<!-- End plugin css for this page -->
<!-- inject:css -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="style.css">
<!-- endinject -->
<link rel="shortcut icon" href="images/favicon.png" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body >
<iframe name="formtarget" id="formtarget" hidden ></iframe>
<iframe name="formtarget2" id="formtarget2" hidden ></iframe>
<div name="scripttarget" id="scripttarget" hidden ></div>
<div class="container-scroller">
<!-- partial:partials/_horizontal-navbar.html -->
<nav class="navbar horizontal-layout col-lg-12 col-12 p-0">
<div class="container d-flex flex-row">
<div class="text-center navbar-brand-wrapper d-flex align-items-top">
<a class="navbar-brand brand-logo" href="index.html" style=""><img src="images/contentb.png" alt="logo"/></a>
<a class="navbar-brand brand-logo-mini" href="index.html"><img src="images/contentb.png" alt="logo"/></a>
</div>
<div class="navbar-menu-wrapper d-flex align-items-center">
<form class="search-field ml-auto" action="#">
</form>
<ul class="navbar-nav navbar-nav-right mr-0">
<li class="nav-item dropdown ml-4">
<a class="nav-link count-indicator dropdown-toggle" id="notificationDropdown" href="#" data-toggle="dropdown">
<i class="mdi mdi-bell-outline"></i>
<span class="count bg-warning">1</span>
</a>
<div class="dropdown-menu dropdown-menu-right navbar-dropdown preview-list" aria-labelledby="notificationDropdown">
<a class="dropdown-item py-3">
<p class="mb-0 font-weight-medium float-left">You have notifications
</p>
<span class="badge badge-pill badge-inverse-info float-right">View all</span>
</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item preview-item">
<div class="preview-thumbnail">
<div class="preview-icon bg-inverse-success">
<i class="mdi mdi-alert-circle-outline mx-0"></i>
</div>
</div>
<div class="preview-item-content">
<h6 class="preview-subject font-weight-normal text-dark mb-1">Notifications here</h6>
<p class="font-weight-light small-text mb-0">
Coming Soon
</p>
</div>
</a>
<div class="dropdown-divider"></div>
</div>
</li>
<li class="nav-item dropdown d-none d-xl-inline-block">
<a class="nav-link dropdown-toggle" id="UserDropdown" href="#" data-toggle="dropdown" aria-expanded="false">
<img class="img-xs rounded-circle" src="https://placehold.it/100x100" alt="Profile image">
</a>
<div class="dropdown-menu dropdown-menu-right navbar-dropdown" aria-labelledby="UserDropdown">
<a class="dropdown-item ">
<h5><?php echo $_SESSION['em'];?></h5>
</a>
<a class="dropdown-item mt-2">
Manage Account
</a>
<a class="dropdown-item">
Change Password
</a>
<form action="controllers/auth.php" method=post>
<input type="hidden" name="action" value="logout">
<input type="submit" value="Sign Out" class="dropdown-item">
</form>
</div>
</li>
</ul>
<button class="navbar-toggler align-self-center" type="button" data-toggle="minimize">
<span class="mdi mdi-menu"></span>
</button>
</div>
</div>
<div class="nav-bottom">
<div class="container">
<ul class="nav page-navigation">
<li class="nav-item">
<a href="dashboard" class="nav-link"><i class="link-icon mdi mdi-apps"></i><span class="menu-title">DASHBOARD</span></a>
</li>
<li class="nav-item">
<a href="repository" class="nav-link"><i class="link-icon mdi mdi-folder-open"></i><span class="menu-title">REPOSITORY</span></a>
</li>
<li class="nav-item">
<a href="send" class="nav-link"><i class="link-icon mdi mdi-send"></i><span class="menu-title">SEND</span></a>
</li>
<li class="nav-item">
<a href="leads" class="nav-link"><i class="link-icon mdi mdi-account-settings-variant"></i><span class="menu-title">LEADS</span></a>
</li>
<li class="nav-item">
<a href="settings" class="nav-link"><i class="link-icon mdi mdi-settings"></i><span class="menu-title">SETTINGS</span></a>
</li>
<li class="nav-item">
<a href="reports" class="nav-link"><i class="link-icon mdi mdi-chart-bar"></i><span class="menu-title">REPORTS</span></a>
</li>
</ul>
</div>
</div>
</nav>