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
|
<html> <head> <link rel="stylesheet" href="main.css" type="text/css"> <meta http-equiv="Content-Type" content="text/html; charset=big5" /> <title>Admin Page</title> </head> <body leftmargin="0"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr><td><br><br></td></tr> <tr> <td bgcolor="#c0c0c0" class='content' align="center"><font size="2"><b>Main Menu</b></font></td> </tr> <tr><td class='content' height="25"> <a href="categoriesindex.php?pid=0" target="main"><img src="images/dot.jpg" border="0"> <font size="2">Menu & Content </font></a></td></tr> <tr><td class='content' height="25"> <a href="videoindex.php" target="main"><img src="images/dot.jpg" border="0"> <font size="2">Video</font></a></td></tr> <tr><td class='content' height="25"> <a href="newsindex.php" target="main"><img src="images/dot.jpg" border="0"> <font size="2">News</font></a></td></tr> <tr> <td class='content' height="25"> <a href="calendarindex.php" target="main"><img src="images/dot.jpg" border="0"> <font size="2">Calendar</font></a></td> </tr> <tr> <td bgcolor="#c0c0c0" class='content' align="center"><font size="2"><b>Gallery</b></font></td> </tr> <tr><td class='content' height="25"> <a href="albummajindex.php" target="main"><img src="images/dot.jpg" border="0"> <font size="2">List Album</font></a></td></tr> <tr><td class='content' height="25"> <a href="albumindex.php" target="main"><img src="images/dot.jpg" border="0"> <font size="2">List Image</font></a></td></tr> <tr> <td bgcolor="#c0c0c0" class='content' align="center"><font size="2"><b>Logout</b></font></td> </tr> <tr><td class='content' height="25"> <a href="logout.php" target="_top"><img src="images/dot.jpg" border="0"> <font size="2">Logout</font></a></td></tr> </table> </body> </html>
|