<?php
/* $Id: index.html,v 1.1.1.1.2.2 2008/02/03 10:16:21 pmcilwaine Exp $ */
require_once( LIBDIR . "/HTMLForm.php" );
$html = new HTMLForm();
if ( isset($msg) )
{
$html->_msgs = $msg;
}
?>
<html>
<head>
<title>WB News Administration :: Edit User</title>
</head>
<body>
<form action="" method="post">
<?= $html->HiddenTags( $formdata["hidden"] ) ?>
<table class="edit-form" cellpadding="0" cellspacing="0">
<caption><?= $caption ?></caption>
<tr>
<th>Username</th>
<td><?= $html->InputTag( "username", $formdata["username"] ) . $html->Message( "username" ) ?></td>
</tr>
<tr>
<th>Email</th>
<td><?= $html->SelectTag( "email", $formdata["email"] ) . $html->Message( "email" ) ?></td>
</tr>
<tr>
<th>Password</th>
<td><?= $html->InputTag( "password", $formdata["password"] ) . $html->Message( "password" ) ?></td>
</tr>
<tr>
<th>Check Password</th>
<td><?= $html->InputTag( "check_password", $formdata["check_password"] ) . $html->Message( "check_password" ) ?></td>
</tr>
<tr>
<th>Postname</th>
<td><?= $html->InputTag( "postname", $formdata["postname"] ) . $html->Message( "postname" ) ?></td>
</tr>
<tr>
<td colspan="2" class="buttons"><?= $html->SubmitButtons( $buttons ) ?></td>
</tr>
</table>
</form>
<?= $html->Message() ?>
</body>
</html>