User name in navbar now links to Portal home

V2-Rewrite
Skylar Ittner 7 years ago
parent 455a199d78
commit d6df9d582c

3
.gitignore vendored

@ -1,3 +1,4 @@
vendor vendor
settings.php settings.php
nbproject/private nbproject/private
*.sync-conflict*

@ -78,10 +78,6 @@ if (!is_empty($_GET['page'])) {
<a class="navbar-brand" href="app.php"> <a class="navbar-brand" href="app.php">
<?php <?php
echo SITE_TITLE; echo SITE_TITLE;
// add breadcrumb-y thing
//lang("home");
//echo " <i class=\"fa fa-caret-right\"></i> ";
//lang(PAGES[$pageid]['title']);
?> ?>
</a> </a>
</div> </div>
@ -114,7 +110,7 @@ if (!is_empty($_GET['page'])) {
?> ?>
</ul> </ul>
<ul class="nav navbar-nav navbar-right"> <ul class="nav navbar-nav navbar-right">
<li><span class="navbar-text navbar-link"><i class="fa fa-user fa-fw"></i> <?php echo $_SESSION['realname'] ?></span></li> <li><a href="<?php echo PORTAL_URL; ?>"><i class="fa fa-user fa-fw"></i> <?php echo $_SESSION['realname'] ?></a></li>
<li><a href="action.php?action=signout"><i class="fa fa-sign-out fa-fw"></i> <?php lang("sign out") ?></a></li> <li><a href="action.php?action=signout"><i class="fa fa-sign-out fa-fw"></i> <?php lang("sign out") ?></a></li>
</ul> </ul>
</div> </div>

@ -29,6 +29,8 @@ define("MENU_BAR_STYLE", "fixed");
// URL of the Business Portal API endpoint // URL of the Business Portal API endpoint
define("PORTAL_API", "http://localhost/api.php"); define("PORTAL_API", "http://localhost/api.php");
// URL of the Portal home page
define("PORTAL_URL", "http://localhost/home.php");
// Business Portal API Key // Business Portal API Key
define("PORTAL_KEY", "123"); define("PORTAL_KEY", "123");

Loading…
Cancel
Save