new-bigly-chat/libs/page.php
2024-11-26 11:38:28 -05:00

16 lines
No EOL
367 B
PHP

<?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 }
?>