Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
banners-with-skip
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
4e7ca86b
authored
2016-04-12 12:56:00 -0400
by
Jeff Balicki
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
removed oath
1 parent
190ddd1c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
8 deletions
includes/auth.php
includes/loggedin.php
menu.php
includes/auth.php
View file @
4e7ca86
<?php
if
(
!
isset
(
$_SESSION
[
'token'
])){
echo
'<form>
...
...
includes/loggedin.php
View file @
4e7ca86
<?php
if
(
!
isset
(
$_SESSION
)
&&
!
isset
(
$_SESSION
[
'username'
]))
{
return
;
}
//
if (!isset($_SESSION) && !isset($_SESSION['username'])) {
//
return;
//
}
$dockets
=
Array
();
...
...
menu.php
View file @
4e7ca86
...
...
@@ -55,12 +55,15 @@
</head>
<body>
<?php
if
(
isset
(
$_SESSION
[
'username'
]))
{
include
(
'includes/loggedin.php'
);
}
else
{
include
(
'includes/auth.php'
);
}
include
(
'includes/loggedin.php'
);
//if (isset($_SESSION['username'])) {
// include('includes/loggedin.php');
//} else {
// include('includes/auth.php');
//}
?>
<div
id=
"TzLogo"
>
...
...
Please
register
or
sign in
to post a comment