16 lines
367 B
PHP
16 lines
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 }
|
||
|
?>
|