68 lines
2.3 KiB
PHTML
68 lines
2.3 KiB
PHTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="/css/bootstrap.css" rel="stylesheet">
|
|
<!-- Bootstrap theme -->
|
|
<link href="/css/bootstrap-theme.css" rel="stylesheet">
|
|
<link href="/css/my-style.css" rel="stylesheet">
|
|
|
|
<title>Ecobuddy - <?php echo $view->pageTitle; ?></title>
|
|
</head>
|
|
|
|
<nav class="navbar navbar-expand-lg m-2 border rounded-2">
|
|
<div class="container-fluid">
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo03" aria-controls="navbarTogglerDemo03" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="/index.php">Ecobuddy <?php echo $view->pageTitle?></a>
|
|
<div class="collapse navbar-collapse" id="navbarTogglerDemo03">
|
|
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" aria-current="page" href="/index.php">Home</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">Link</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link disabled" aria-disabled="true">Disabled</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<form class="d-flex" role="search">
|
|
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
|
|
<button class="btn bg-light btn-outline-light text-dark" type="submit">Search</button>
|
|
</form>
|
|
|
|
<?php
|
|
|
|
if ($view->loginError) {
|
|
require_once('Views/template/loginError.phtml');
|
|
}
|
|
if(!$user->isLoggedIn()) {
|
|
require_once('Views/template/loginModal.phtml');
|
|
}
|
|
if($user->isLoggedIn()) {
|
|
require_once('Views/template/logoutButton.phtml');
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<body role="document">
|
|
|
|
<div class="container-lg">
|
|
|
|
|
|
<div id="content" >
|
|
|
|
|
|
|