| Server IP : 210.245.233.93 / Your IP : 216.73.216.226 Web Server : Apache/2.2.15 (CentOS) System : Linux webserver2.onesolution.com.hk 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : apache ( 48) PHP Version : 5.3.3 Disable Function : exec, shell_exec, system, passthru, popen, proc_open, pcntl_exec MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/(Del)discoverylearning.com.hk/webadmin/ |
Upload File : |
<?php
session_start();
if( isset($_POST['submit'])) {
$_SESSION['cmsloginname'] = $_POST['username'];
$_SESSION['cmsloginpw'] = $_POST['password'];
//$db_object->disconnect();
header('Location: main.php');
} else {
?>
<!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>Content Management System (CMS) - Powered by One Solution Limited</title>
<style type="text/css">
<!--
body {
padding:0px;
margin-top: 50px;
background-color:#666666;
font-family: Arial;
font-size: 12px;
color: #666666;
text-decoration: none;
}
-->
</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
echo "<br><p><b>". $_GET['msg'] ."<b></p>";
?>
<form action="login.php" method="post">
<table border="0" cellspacing="0" cellpadding="3">
<tr><td align="right">Login ID</td>
<td align="left">: </td>
<td align="left"><input type="text" name="username" value="" size="25" maxlength="25" ></td></tr>
<tr><td align="right">Password</td>
<td align="left">: </td>
<td align="left"><input type="password" name="password" value=""size="25" maxlength="25" ></td></tr>
<tr><td colspan="2" align="center"></td>
<td colspan="2" align="right"><input 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"><a href="http://www.onesolution.com.hk" target="_blank"><img src="images/onesolution_logo.jpg" border="0" /></a> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF"><img src="images/login_footerf.jpg" width="500" height="15" /></td>
</tr>
</table>
</body>
</html>
<?php
}
?>