new-bigly-chat/libs/page.php

16 lines
367 B
PHP
Raw Normal View History

2024-11-26 11:38:28 -05:00
<?php
require("../libs/auth.php");
function page_header() { ?>
<!DOCTYPE html>
<html>
<head>
<title>NewBiglyChat</title>
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<?php }
function page_footer() { ?>
</body>
</html>
<?php }
?>