Whatever message this page gives is out now! Go check it out!
| Parameter | Description |
functionName | The name of the function to run when the page loads. The specified function does not take a parameter. |
<html>
<head>
<title>Enter Mail Login Details</title>
<script>
init = function() {
ColdFusion.Window.show('loginwindow');
}
</script>
</head>
<body>
<cfwindow name="loginwindow" title="Enter Login Details"
draggable="false" closable="false" resizable="false"
width="450" height="200">
<cfoutput>
<form action="#cgi.script_name#" method="post" name="loginform">
<table width="400" class="loginTable" cellpadding="5">
<tr>
<td style="text-align: right">mail server:</td>
<td><input type="text" name="server"></td>
</tr>
<tr>
<td style="text-align: right">username:</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td style="text-align: right">password:</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="login" value="Login"></td>
</tr>
</table>
</form>
</cfoutput>
</cfwindow>
<cfset AjaxOnLoad("init")>
</body>
</html>