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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<?php session_start(); ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title><?=$system_var['COMPANY_NAME']?></title> <link rel="stylesheet" type="text/css" href="css/style.css" /> </head> <body> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" class="login_bg"> <tr> <td><table border="0" align="center" cellpadding="0" cellspacing="0" class="login_frame"> <tr> <td class="login_frame_lt"></td> <td class="login_frame_top"></td> <td class="login_frame_rt"></td> </tr> <tr> <td valign="top" class="login_frame_left"><table border="0" cellpadding="0" cellspacing="0" class="login_frame_lt2"> <tr> <td></td> </tr> </table></td> <td><table border="0" cellspacing="0"> <tr> <td align="center" valign="top" class="login_logo"><img src="image/logo2_enza.jpg" width="130" height="45" /></td> <td align="right" valign="top" class="login_frame_shadow"><table border="0" cellpadding="0" cellspacing="0"> <tr> <td align="right" class="ltext">Management system</td> </tr> <!-- <tr> <td align="right" valign="middle" class="top_logout"> <a href="logout.php">Logout <img src="image/icon_logout.png" width="14" height="14" align="absmiddle" /></a></td> </tr>--> <tr> <td align="right" class="form_login" style="color:#FF0000">Error 错误: <?=htmlentities(empty($_REQUEST['error'])?"":$_REQUEST['error'])?></td> </tr> <tr> <td align="right"> </td> </tr> <tr> <td align="right"><FORM><INPUT TYPE="BUTTON" VALUE="Logout 登出" ONCLICK="location.href='logout.php';"><INPUT TYPE="BUTTON" VALUE="Back 上一页" ONCLICK="history.go(-1)"></FORM></td> </tr>
</table></td> </tr> </table></td> <td valign="top" class="login_frame_right"><table border="0" cellpadding="0" cellspacing="0" class="login_frame_rt2"> <tr> <td class=""></td> </tr> </table></td> </tr> <tr> <td class="login_frame_lb"></td> <td class="login_frame_bottom"></td> <td class="login_frame_rb"></td> </tr> </table></td> </tr> </table> </body> </html>
|