
function fwdash_redirect_to_dashboard()
{
	var form = document.createElement('form');
	form.setAttribute("method", "post");
	form.setAttribute("action", "https://www.formworld.net/builder/");
	document.body.appendChild(form);

	form.submit();

	return false;
}

document.write('<form name="dashboardloginform" method="POST" action="https://www.formworld.net/builder/login.php" style="display:inline;">');
document.write('<input type="hidden" name="o" value="login" />');
document.write('<table border="0" cellpadding="2" width="100%">');
document.write('<tr>');
document.write('<td colspan="2" align="left"><b style="font-family:\'Lucida Sans\', Verdana, Arial, Helvetica, sans-serif;">DASHBOARD LOGIN</b></td>');
document.write('</tr>');


document.write('<tr>');
document.write('<td>Email:</td>');
document.write('<td><input type="text" name="email" value="" style="width:100px; height:12px; color:#444444; font-size:11px;" /></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td>Password:</td>');
document.write('<td><input type="password" name="password" value="" style="width:100px; height:12px; color:#444444;; font-size:11px;" /></td>');
document.write('</tr>');

document.write('<tr>');
document.write('<td><small>Remember me?</small></td>');
document.write('<td><input type="checkbox" name="rememberme" value="yes" checked="checked" /></td>');
document.write('</tr>');

document.write('<tr>');
document.write('<td>&nbsp;</td>');
document.write('<td><input type="submit" value="ENTER" style="border-color:#7F9DB9; color:#58A5DB; padding:2px; height:20px; font-size:10px;" />&nbsp;or&nbsp;<a href="https://www.formworld.net/builder/signup.php" style="font-weight:normal; color:#218bde;">Sign&nbsp;Up</a></td>');
document.write('</tr>');


document.write('</table>');
document.write('</form>');

