Example #1
0
<html>
<head>
	<title>Forgot login</title>
	<link rel="stylesheet" href="puls.css" type="text/css" />
</head>
<body>
	<?php 
print $alert;
?>
	<h1>Forgot login</h1>
	<form action="<?php 
echo $HTTP_SERVER_VARS['PHP_SELF'];
?>
" method="post">
	<table align="left" border="0" cellspacing="0" cellpadding="3">
		<tr><td>Email:</td><td><input type="text" name="email" value="<?php 
printField('email');
?>
" maxlength="30"></td></tr>
		<tr><td colspan="2" align="right"><input type="submit" name="subform" value="Submit"></td></tr>
	</table>
	</form>
</body>
</html>
Example #2
0
str+='	<\/table>';
str+='<\/form>';
document.write(str);
}
//writeJS();
//-->
</script>
<?php 
//<noscript>You need Javascript to use this page.</noscript>
?>
<form name="login" action="" method="post" onsubmit="javascript:doLogin(this);">
	<table align="left" border="0" cellspacing="0" cellpadding="3">
	<tr>
		<td>Username:</td>
		<td><input type="text" name="user" value="<?php 
printField('user');
?>
" maxlength="30"></td></tr>
	<tr>
		<td>Password:</td>
		<td><input type="password" name="pass_field"></td></tr>
	<tr>
	<tr>
		<td colspan="2" align="left">
			<input type="checkbox" name="remember">
			<font size="2">Remember me next time</font>
		</td>
	</tr>
	<tr>
		<td colspan="2" align="right">
			<input type="hidden" name="pass" value="" />
Example #3
0
/**
 * @deprecated
 * @since 1.2.8
 */
function printEditable($context, $field, $editable = NULL, $editclass = 'unspecified', $messageIfEmpty = true, $convertBR = false, $override = false, $label = '')
{
    deprecated_functions::notify(gettext('No longer supported.'));
    printField($context, $field, $convertBR, $override, $label);
}