You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
674 B
21 lines
674 B
<!DOCTYPE html>
|
|
<html lang="cs">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?php echo "$title"; ?></title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
|
|
<?php
|
|
|
|
$is_user_logged = false;
|
|
if (isset($_SESSION["login"])) {
|
|
if (strlen($_SESSION["login"]) > 0) {
|
|
echo "Jste přihlášen jako: " . $_SESSION["login"];
|
|
$is_user_logged = true;
|
|
} else {
|
|
echo "Nejste přihlášen";
|
|
}
|
|
}
|
|
|