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
|
<html> <head> <link rel="stylesheet" href="main.css" type="text/css"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <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>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">網頁內容</font></a></td> </tr> <tr> <td class='content' height="25"> <a href="galleryindex.php?gallerytype=1" target="main"><img src="images/dot.jpg" border="0"> <font size="2">比賽精華</font></a></td> </tr> <tr> <td class='content' height="25"> <a href="galleryindex.php?gallerytype=2" target="main"><img src="images/dot.jpg" border="0"> <font size="2">拳館照片</font></a></td> </tr> <tr> <td class='content' height="25"> <a href="homemodifyform.php?mainpageid=1" target="main"><img src="images/dot.jpg" border="0"> <font size="2">主頁簡介</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">最新消息</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">登出</font></a></td></tr> </table> </body> </html>
|