<?php
if ($use_username) {
$username = array(
'name' => 'username',
'id' => 'username',
'value' => set_value('username'),
'maxlength' => $this->config->item('username_max_length', 'tank_auth'),
'size' => 30,
);
}
$email = array(
'name' => 'email',
'id' => 'email',
'value' => set_value('email'),
'maxlength' => 80,
'size' => 30,
);
$password = array(
'name' => 'password',
'id' => 'password',
'value' => set_value('password'),
'maxlength' => $this->config->item('password_max_length', 'tank_auth'),
'size' => 30,
);
$confirm_password = array(
'name' => 'confirm_password',
'id' => 'confirm_password',
'value' => set_value('confirm_password'),
'maxlength' => $this->config->item('password_max_length', 'tank_auth'),
'size' => 30,
);
$captcha = array(
'name' => 'captcha',
'id' => 'captcha',
'maxlength' => 8,
);
?>
<?php $this->load->view('header.php'); ?>
<div id="content">
<div id="top" class="clearfix">
<div class="span-4"><h1>Register</h1></div>
</div>
<div class="box">
<?php echo form_open($this->uri->uri_string()); ?>
<table cellpadding="0" cellspacing="0" class="user_table">
<?php if ($use_username) { ?>
<tr>
<th><?php echo form_label('Username', $username['id']); ?></th>
<td><?php echo form_input($username); ?>
<span style="color: red;text-align:left;"><?php echo form_error($username['name']); ?><?php echo isset($errors[$username['name']])?$errors[$username['name']]:''; ?></span></td>
</tr>
<?php } ?>
<tr>
<th><?php echo form_label('Email Address', $email['id']); ?></th>
<td><?php echo form_input($email); ?>
<span style="color: red;text-align:left;"><?php echo form_error($email['name']); ?><?php echo isset($errors[$email['name']])?$errors[$email['name']]:''; ?></span></td>
</tr>
<tr>
<th><?php echo form_label('Password', $password['id']); ?></th>
<td><?php echo form_password($password); ?>
<span style="color: red;text-align:left;"><?php echo form_error($password['name']); ?></span></td>
</tr>
<tr>
<th><?php echo form_label('Confirm Password', $confirm_password['id']); ?></th>
<td><?php echo form_password($confirm_password); ?>
<span style="color: red;text-align:left;"><?php echo form_error($confirm_password['name']); ?></span></td>
</tr>
<?php if ($captcha_registration) {
if ($use_recaptcha) { ?>
<tr>
<td colspan="2">
<div id="recaptcha_image"></div>
</td>
<td>
<a href="javascript:Recaptcha.reload()">Get another CAPTCHA</a>
<div class="recaptcha_only_if_image"><a href="javascript:Recaptcha.switch_type('audio')">Get an audio CAPTCHA</a></div>
<div class="recaptcha_only_if_audio"><a href="javascript:Recaptcha.switch_type('image')">Get an image CAPTCHA</a></div>
</td>
</tr>
<tr>
<td>
<div class="recaptcha_only_if_image">Enter the words above</div>
<div class="recaptcha_only_if_audio">Enter the numbers you hear</div>
</td>
<td><input type="text" id="recaptcha_response_field" name="recaptcha_response_field" /></td>
<td style="color: red;text-align:left;"><?php echo form_error('recaptcha_response_field'); ?></td>
<?php echo $recaptcha_html; ?>
</tr>
<?php } else { ?>
<tr>
<th> </th>
<td align="left">
<p>Enter the code exactly as it appears:</p>
<?php echo $captcha_html; ?>
</td>
</tr>
<tr>
<th><?php echo form_label('Confirmation Code', $captcha['id']); ?></th>
<td><?php echo form_input($captcha); ?>
<span style="color: red;text-align:left;"><?php echo form_error($captcha['name']); ?></span></td>
</tr>
<?php }
} ?>
<tr><th> </th><td><?php echo form_submit('register', 'Register', 'class="submit"'); ?></td></tr>
</table>
<?php echo form_close(); ?>
</div>
</div>
<?php $this->load->view('footer.php'); ?>