1
mirror of https://github.com/jakejarvis/jbb.git synced 2025-10-21 05:54:25 -04:00

first commit

This commit is contained in:
2018-10-18 12:42:02 -04:00
commit 59d1ee3c22
105 changed files with 3773 additions and 0 deletions

21
admin/admin.php Executable file
View File

@@ -0,0 +1,21 @@
<HTML>
<HEAD>
<BASE TARGET="main">
<STYLE TYPE="text/css">
a:link {font-family:Verdana; font-color:navyblue;}
</STYLE>
</HEAD>
<BODY>
<FONT FACE="Verdana" SIZE="-1">
<?php
$act = $act . ".php";
if ( $act == "" || !file_exists($act) ) {
$act = "main.php";
}
include("$act");
?>
</FONT>
</BODY>
</HTML>