summaryrefslogtreecommitdiff
path: root/admin.inc
blob: e81bd21e1fa28da66e9d824bbaf0b1316a319095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?


function admin_header() {
  include "config.inc";
 ?>
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  <HTML>
   <HEAD><TITLE><? echo $sitename; ?> - administration</TITLE></HEAD>
   <STYLE>
    body    { font-family: helvetica, arial; }
    h1      { font-size: 14pt; font-weight: bold; color: #006699; }
    h2      { font-family: helvetica, arial; font-size: 12pt; font-weight: bold; }
    h3      { font-family: helvetica, arial; font-size: 14pt; font-weight: bold; }
    th	    { font-family: helvetica, arial; text-align: center; background-color: #C0C0C0; color: #447744; }
    td	    { font-family: helvetica, arial; }
   </STYLE>
   <BODY BGCOLOR="#FFFFFF" LINK="#0000FF" VLINK="#000099" ALINK="#FF0000">
   <TABLE BORDER="1">
    <TR>
     <TD ALIGN="left" VALIGN="top" WIDTH="100">
      <P>
       <LI><A HREF="admin.php?section=accounts">accounts</A></LI>
       <LI><A HREF="admin.php?section=bans">bans</A></LI>
       <LI><A HREF="admin.php?section=logs">logs</A></LI>
       <LI><A HREF="admin.php?section=stories">stories</A></LI>
      <P>
       <LI><A HREF="">home</A></LI>
     </TD>
     <TD>
 <?
}

function admin_footer() {
 ?>
     </TD>
    </TR>
   </TABLE>
   </BODY>
  </HTML>
 <?
}

?>