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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
<?php require_once 'config.php';
// Is the user already logged in? Redirect him/her to the private page
if (isSet($_SESSION['loginname']) && ($loggin == '1')) { header("Location: index.php"); exit; } require_once 'function_login_block.php'; die_if_login_block();
if (isset($_POST['submit'])) { $do_login = true; include_once 'do_login.php'; }
?> <!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> <link rel="stylesheet" type="text/css" href="css/style.css" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Content Management System (CMS) - Powered by One Solution Limited</title> <script type="text/javascript" src="js/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script> <style type="text/css"> <!-- body { padding: 0px; margin-top: 50px; background-image: none; background-color: #666666; font-family: Arial; font-size: 12px; color: #666666; text-decoration: none; }
#error_notification { border: 1px #A25965 solid; height: auto; padding: 4px; background: #F8F0F1; text-align: center; -moz-border-radius: 5px; }
--> </style> </head>
<body> <table width="500" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td bgcolor="#FFFFFF"><img src="images/login_topf.jpg" width="500" height="15"/></td> </tr> <tr> <td align="center" valign="middle" bgcolor="#FFFFFF"><img src="images/logo.jpg" width="435" height="150"/></td> </tr> <tr> <td bgcolor="#FFFFFF"><img src="images/login_line.jpg" width="500" height="15"/></td> </tr> <tr> <td align="center" valign="middle" bgcolor="#FFFFFF"> <?php if (isSet($login_error)) { echo '<div id="error_notification">The submitted login info is incorrect.</div>'; } ?> <form name="login" method="post" action="login.php"> <table border="0" cellspacing="0" cellpadding="3"> <tr> <td align="right">Login ID</td> <td align="left">: </td> <td align="left"><input id="name" type="text" name="loginname" style="width:200px;"></td> </tr> <tr> <td align="right">Password</td> <td align="left">: </td> <td align="left"><input type="password" name="password" style="width:200px;"></td> </tr>
<tr> <td colspan="2" align="center"></td> <td colspan="2" align="left"><input id="submit" type="submit" name="submit" value=" Login "> </td> </tr> </table> </form> </td> </tr> <tr> <td bgcolor="#FFFFFF"><img src="images/login_line.jpg" width="500" height="15"/></td> </tr> <tr> <td align="right" bgcolor="#FFFFFF"> </td> </tr> <tr> <td style="background-color: none;"><img src="images/login_footerf.jpg" width="500" height="15"/></td> </tr> </table> </body> </html>
|