bigly-chat/libs/page.php

44 lines
1.5 KiB
PHP
Raw Normal View History

2024-11-26 11:38:28 -05:00
<?php
2025-01-07 15:19:55 -05:00
require(__DIR__ . "/auth.php");
2024-11-26 23:37:16 -05:00
global $username;
function page_header() {
2025-01-20 16:50:22 -05:00
global $db;
global $username;
$stmt = $db->prepare("SELECT * FROM comment WHERE targetType = ? AND targetId = ? ORDER BY date DESC");
$stmt->execute([
"notification",
$username,
]);
$posts2 = $stmt->fetchAll(PDO::FETCH_DEFAULT);
$edge = count($posts2);
?>
<!DOCTYPE html>
2024-11-26 11:38:28 -05:00
<html>
<head>
<title>NewBiglyChat</title>
2024-11-27 00:13:33 -05:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-11-26 11:38:28 -05:00
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
2024-11-26 23:37:16 -05:00
<div class="header">
<a href="/"><img class="header-img header-link" src="/img/newlogo.svg"></a>
<a href="/" class='header-link'>Home</a>
<?php
if (isset($username)) { ?>
<a class="header-link" href="/user.php?id=<?php echo $username ?>"><?php echo $username ?></a>
2025-01-20 16:50:22 -05:00
<a class="header-link" href="/notif.php">Pings [<?php echo $edge ?>]</a>
2024-12-01 07:04:33 -05:00
<a class="header-link" href="/logout.php">Logout</a>
2024-11-26 23:37:16 -05:00
<?php } else { ?>
<a class="header-link" href="/login.php">Login</a>
<?php }
?>
</div>
2024-11-26 11:38:28 -05:00
<?php }
function page_footer() { ?>
</body>
</html>
<?php }
2024-12-07 09:10:36 -05:00
?>