You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
777 B
PHP

<?php
session_start();
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Beer List Of Mine</title>
<meta name="description" content="Welcome to Beer List of Mine, follow your favourite beers"/>
<meta name="author" content="Igor Vujovič" />
<link type="text/css" rel="stylesheet" href="src/style/style.css" media="all">
<link type="text/css" rel="stylesheet" href="src/style/print.css" media="print">
</head>
<body>
<a href="index.php">
<header>
<h1>Welcome to<br/>Beer List of Mine</h1>
</header>
</a>
<!-- menu-->
<?php
if(isset($_SESSION["loggedin"]) && $_SESSION["loggedin"] === true){
require("view/navbar/userbar.php");
} else {
require("view/navbar/loginbar.php");
}
?>