Here they are
#################################
Type: CSS based simple login (html version)
Information just use the code to make a page, or strip it down and include it within your site
Code
#################################
Type: CSS based simple login (php version)
Information just use the code to make a page, or strip it down and include it within your site
Code
#################################
Type: CSS based simple login with image based submit button (html version)
Information just use the code to make a page, or strip it down and include it within your site
Code
#################################
Type: CSS based simple login with image based submit button (php version)
Information just use the code to make a page, or strip it down and include it within your site
Code
#################################
Any problems post below and i will edit this post with the fixes
Chris

#################################
Type: CSS based simple login (html version)
Information just use the code to make a page, or strip it down and include it within your site

Code
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>DirectAdmin Login Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
.tablestyle {
font-family: Verdana, Arial, Helvetica, sans-serif;
border: 1px solid #000000;
font-size: 12px;
}
</style>
<style type="text/css">
.buttonstyle {
border: 1px solid <?php echo "border"; ?>;
}
</style>
</head>
<body>
<form action="http://domain.com:2222/CMD_LOGIN" method="post" name="login">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" class="tablestyle"><div align="center"><font color="#003366" size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>DIRECTADMIN
LOGIN</strong></font></div></td>
</tr>
<tr>
<td width="50%" height="50" valign="middle"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Username:</font></td>
<td width="50%" valign="middle"> <input name="username" type="text" class="tablestyle" value="username" maxlength="26"></td>
</tr>
<tr>
<td height="48" valign="middle"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Password:</font></td>
<td><input name="password" type="password" class="tablestyle" value="password"></td>
</tr>
<tr>
<td colspan="2" class="tablestyle"><div align="center">
<p><br>
<input name="Submit" type="submit" class="buttonstyle" value="Login">
<br>
<br>
</p>
</div></td>
</tr>
</table>
<div align="center"></div>
</form>
</body>
</html>
#################################
Type: CSS based simple login (php version)
Information just use the code to make a page, or strip it down and include it within your site

Code
Code:
<?php
// change the below settings to anything you want :)
$pagetitle = "DirectAdmin Login Page"; // Title of this page
$username = "username"; // Default value of username field
$password = "password"; // Default value of password field
$submit = "login"; // Text displayed on the login button
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title><?php echo "$pagetitle"; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
.tablestyle {
font-family: Verdana, Arial, Helvetica, sans-serif;
border: 1px solid #000000;
font-size: 12px;
}
</style>
<style type="text/css">
.buttonstyle {
border: 1px solid <?php echo "border"; ?>;
}
</style>
</head>
<body>
<form name="login">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" class="tablestyle"><div align="center"><font color="#003366" size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>DIRECTADMIN
LOGIN</strong></font></div></td>
</tr>
<tr>
<td width="50%" height="50" valign="middle"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Username:</font></td>
<td width="50%" valign="middle"> <input name="username" type="text" class="tablestyle" value="<?php echo "$username"; ?>" maxlength="26"></td>
</tr>
<tr>
<td height="48" valign="middle"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Password:</font></td>
<td><input name="password" type="password" class="tablestyle" value="<?php echo "$password"; ?>"></td>
</tr>
<tr>
<td colspan="2" class="tablestyle"><div align="center">
<p><br>
<input name="button" type="button" class="buttonstyle" value="<?php echo "$submit"; ?>">
<br>
<br>
</p>
</div></td>
</tr>
</table>
<div align="center"></div>
</form>
</body>
</html>
#################################
Type: CSS based simple login with image based submit button (html version)
Information just use the code to make a page, or strip it down and include it within your site

Code
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>DirectAdmin Login Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
.tablestyle {
font-family: Verdana, Arial, Helvetica, sans-serif;
border: 1px solid #000000;
font-size: 12px;
}
</style>
<style type="text/css">
.buttonstyle {
border: 1px solid <?php echo "border"; ?>;
}
</style>
</head>
<body>
<form action="http://domain.com:2222/CMD_LOGIN" method="post" name="login">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" class="tablestyle"><div align="center"><font color="#003366" size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>DIRECTADMIN
LOGIN</strong></font></div></td>
</tr>
<tr>
<td width="50%" height="50" valign="middle"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Username:</font></td>
<td width="50%" valign="middle"> <input name="username" type="text" class="tablestyle" value="username" maxlength="26"></td>
</tr>
<tr>
<td height="48" valign="middle"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Password:</font></td>
<td><input name="password" type="password" class="tablestyle" value="password"></td>
</tr>
<tr>
<td colspan="2" class="tablestyle"><div align="center">
<p><br>
<input name="Submit" type="image" class="buttonstyle" value="Login" SRC="http://link.to/image.ext>
<br>
<br>
</p>
</div></td>
</tr>
</table>
<div align="center"></div>
</form>
</body>
</html>
#################################
Type: CSS based simple login with image based submit button (php version)
Information just use the code to make a page, or strip it down and include it within your site

Code
Code:
<?php
// change the below settings to anything you want :)
$pagetitle = "DirectAdmin Login Page"; // Title of this page
$username = "username"; // Default value of username field
$password = "password"; // Default value of password field
$submit = "http://link.to/image.ext"; // Link to submit image
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title><?php echo "$pagetitle"; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
.tablestyle {
font-family: Verdana, Arial, Helvetica, sans-serif;
border: 1px solid #000000;
font-size: 12px;
}
</style>
<style type="text/css">
.buttonstyle {
border: 1px solid <?php echo "border"; ?>;
}
</style>
</head>
<body>
<form name="login">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" class="tablestyle"><div align="center"><font color="#003366" size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>DIRECTADMIN
LOGIN</strong></font></div></td>
</tr>
<tr>
<td width="50%" height="50" valign="middle"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Username:</font></td>
<td width="50%" valign="middle"> <input name="username" type="text" class="tablestyle" value="<?php echo "$username"; ?>" maxlength="26"></td>
</tr>
<tr>
<td height="48" valign="middle"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Password:</font></td>
<td><input name="password" type="password" class="tablestyle" value="<?php echo "$password"; ?>"></td>
</tr>
<tr>
<td colspan="2" class="tablestyle"><div align="center">
<p><br>
<input name="button" type="image" class="buttonstyle" SRC="<?php echo "$submit"; ?>" value="submit">
<br>
<br>
</p>
</div></td>
</tr>
</table>
<div align="center"></div>
</form>
</body>
</html>
#################################
Any problems post below and i will edit this post with the fixes

Chris