Skip to content
Snippets Groups Projects
Commit 8e1910e6 authored by Jared Hancock's avatar Jared Hancock
Browse files

Clarify header links in the client portal

parent 8a2f9924
No related branches found
No related tags found
No related merge requests found
......@@ -50,11 +50,16 @@ header("Content-Type: text/html; charset=UTF-8\r\n");
<a href="<?php echo ROOT_PATH; ?>account.php">Profile</a> |
<a href="<?php echo ROOT_PATH; ?>tickets.php">Tickets <b>(<?php echo $thisclient->getNumTickets(); ?>)</b></a> -
<a href="<?php echo ROOT_PATH; ?>logout.php?auth=<?php echo $ost->getLinkToken(); ?>">Log Out</a>
<?php
}elseif($nav){ ?>
Guest User | <a href="<?php echo ROOT_PATH; ?>login.php">Log In</a>
<?php
} ?>
<?php
} elseif($nav) {
if ($cfg->getClientRegistrationMode() == 'public') { ?>
Guest User | <?php
}
if ($cfg->getClientRegistrationMode() != 'disabled') { ?>
<a href="<?php echo ROOT_PATH; ?>login.php">Log In</a>
<?php
}
} ?>
</p>
</div>
<?php
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment