File size: 1,670 Bytes
94f6f0e | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Advanced Dynamic Toolbar Login</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
form {
margin: 0 0 0 0;
}
body{
background-color: #ffffff;
}
p,table,tr,ul{
font: 11px verdana, arial,helvetica,sans-serif,geneva;
color: #333333;
text-align: justify;
}
b{
font: bold 11px verdana, arial,helvetica,sans-serif,geneva;
color: #555555;
font-weight: 700;
}
a{
color: #000000;
text-decoration: none;
}
a:hover{
color: #FF0000;
text-decoration: none;
}
</style>
</head>
<body>
<br><br>
<table width="300" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#586876">
<tr bgcolor="#DCE2E2">
<td width="700" colspan="4">
<form name="frmLogin" method="post" action="login.php">
<table width="100%" border="0" cellpadding="1" cellspacing="2">
<tr>
<td colspan="2"><strong>Advanced dynamic Toolbar Login</strong></td>
</tr>
<tr>
<td width="80">Login: </td>
<td><input type="text" name="login" style="width:200px"></td>
</tr>
<tr>
<td>Password: </td>
<td><input type="text" name="password" style="width:200px"></td>
</tr>
<tr align="center">
<td colspan="2"><input type="submit" name="Submit" value="Login"></td>
</tr>
</table>
</table>
</body>
</html> |