| Current Path : /var/www/cesa.co.za/Mailer/ |
| Current File : /var/www/cesa.co.za/Mailer/index.php |
<?php
/* header("Cache-Control: no-cache"); //HTTP 1.1
header("Pragma: no-cache"); //HTTP 1.0
header("Expires: 0"); //prevents caching at the proxy server
*/
require_once ('includes/globals.php');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Email template control panel</title>
<link rel="stylesheet" type="text/css" href="stylesheet/default_styles.css">
<script language="JavaScript" type="text/javascript">
function validate() {
if ((document.loginForm.username.value == "") || (document.loginForm.password.value == "")) {
alert("Please supply both a username and a password before proceeding");
return false;
}
return true;
}
</script>
</head>
<body bgcolor="#D0ECF8" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" onLoad="javascript:document.loginForm.username.focus();">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td height="10" bgcolor="#016694"><img src="images/spacer.gif" width="1" height="10"></td>
</tr>
<tr>
<td height="2" bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="2"></td>
</tr>
<tr>
<td height="2" bgcolor="#016694"><img src="images/spacer.gif" width="1" height="2"></td>
</tr>
<tr>
<td height="30"><img src="images/spacer.gif" width="1" height="30"></td>
</tr>
<tr>
<td class="paddingLeft20">
<table border="0" cellPadding="0" cellspacing="0">
<form name="loginForm" action="doLogin.php" method="post">
<tr>
<td colspan="2" class="blackTypeBold">Please Login</td>
</tr>
<tr>
<td colspan="2" height="6"><img src="images/spacer.gif" width="1" height="6"></td>
</tr>
<tr>
<td colspan="2" height="1" bgcolor="#016694"><img src="images/spacer.gif" width="1" height="1"></td>
</tr>
<tr>
<td colspan="2" height="6"><img src="images/spacer.gif" width="1" height="6"></td>
</tr>
<tr>
<td class="blackTypeBold" width="100">Username:</td>
<td align="right"><input type="text" name="username" id="username" class="textBox" value="" size="20"></td>
</tr>
<tr>
<td colspan="2" height="6"><img src="images/spacer.gif" width="1" height="6"></td>
</tr>
<tr>
<td class="blackTypeBold" width="100">Password:</td>
<td align="right"><input type="password" name="password" id="password" class="textBox" value="" size="20"></td>
</tr>
<tr>
<td colspan="2" height="6"><img src="images/spacer.gif" width="1" height="6"></td>
</tr>
<tr>
<td colspan="2" align="right"><input type="submit" value="Log on" onClick="return validate();" class="button"></td>
</tr>
</form>
</table>
</td>
</tr>
</table>
</body>
</html>