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
d3fa69cd
authored
2016-04-14 15:59:54 -0400
by
Dan Rempel
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'deploy' of git.gotenzing.com:tenzing/banners-with-skip into deploy
2 parents
97712a11
eadaf6bd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
13 deletions
.gitignore
includes/auth.php
includes/loggedin.php
menu.php
.gitignore
View file @
d3fa69c
...
...
@@ -5,7 +5,6 @@
### Wordpress ###
wp-config.php
...
...
includes/auth.php
View file @
d3fa69c
<?php
if
(
!
isset
(
$_SESSION
[
'token'
])){
echo
'<form>
...
...
includes/loggedin.php
View file @
d3fa69c
<?php
if
(
!
isset
(
$_SESSION
)
&&
!
isset
(
$_SESSION
[
'username'
]))
{
return
;
}
//
if (!isset($_SESSION) && !isset($_SESSION['username'])) {
//
return;
//
}
$dockets
=
Array
();
...
...
menu.php
View file @
d3fa69c
...
...
@@ -38,29 +38,30 @@
list-style
:
none
;
padding-left
:
0
;
}
#TzLogo
{
float
:
right
;
width
:
259px
;
}
#submit
{
margin-left
:
6px
;
}
dd
{
margin-left
:
0
;
}
</style>
</style>
<script
type=
"text/javascript"
src=
"addEvent.js"
></script>
</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