header('Create new user');
$t->openTag('form', array('method'=>'post',
'action'=>$t->url('users')));
$t->openFieldset("New User: Step 1");
if ($VARS['userlist']) {
$t->inputP("If you may have already created a username, please, ".
"please check the ".
$t->link($t->url('users/'), 'user-list', true).
" to find your old username, instead of creating a new ".
"user. If you don't like the name, you can log in and ".
"change it.");
}
if (in_array('illegal name', $VARS['errors'])) {
$t->inputP("That is a forbidden username.", true);
}
if (in_array('user exists', $VARS['errors'])) {
$t->inputP("A user with that name already exists.");
}
$t->inputText('auth_name','Username',
"This is the name you use to log in, but it is also a ".
"short name that is used in various places, think of it ".
"as a sort of Twitter name
.",$VARS['username']);
@$password = $VARS['password1'];
if (in_array('pw mixmatch', $VARS['errors'])) {
$t->inputP("The passwords didn't match.", true);
$password = '';
}
if (in_array('no pw', $VARS['errors'])) {
$t->inputP("You must set a password.", true);
$password = '';
}
$t->inputNewPassword('auth_password','Password', $password);
if (in_array('no email', $VARS['errors'])) {
$t->inputP("You must provide an email address.", true);
}
$t->inputText('user_email', 'Email Address',
'This is so that we can contact you. (duh).', $VARS['email']);
$t->closeFieldset();
foreach ($VARS['antispam_html'] as $html) {
echo $html;
}
$t->tag('input', array('type'=>'submit', 'value'=>'Go on to Step 2'));
$t->closeTag('form');
$t->footer();