File size: 2.47Kb
<?php echo $this->validation()->messages(); ?>
<form name="login" method="post" action="" class="form_large">
<table width="100%" border="0" cellspacing="3" cellpadding="3">
<tr>
<td width="40%"> </td>
<td width="60%"><input type="hidden" name="rd" value="<?php echo View::escape($rd)?>" /></td>
</tr>
<tr>
<td align="right" valign="top"><b><?php echo __('Email') ?> : </b></td>
<td valign="top">
<input name="email" type="text" id="email" size="30" maxlength="100" value="<?php echo View::escape($user->email)?>" />
<?php echo $this->validation()->email_error; ?>
</td>
</tr>
<tr>
<td align="right" valign="top"><b><?php echo __('Password') ?> :</b></td>
<td valign="top">
<input name="password" type="password" id="password" size="30" value="" maxlength="32" />
<?php echo $this->validation()->password_error; ?>
</td>
</tr>
<tr>
<td align="right" valign="top"><b><?php echo __('Repeat password') ?> : </b></td>
<td valign="top">
<input name="password_repeat" type="password" id="password_repeat" size="30" maxlength="32" value="" />
<?php echo $this->validation()->password_repeat_error; ?>
</td>
</tr>
<tr>
<td align="right" valign="top"><b><?php echo __('Security code') ?> : </b> </td>
<td valign="top">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="65" valign="top"> <input size="3" maxlength="4" type="text" name="vImageCodP" /></td>
<td valign="top"><img src="<?php echo get_url('login/securityImage/'.REQUEST_TIME.'/'); ?>" /></td>
</tr>
</table>
<?php echo $this->validation()->vImageCodP_error; ?>
</td>
</tr>
<tr>
<td align="right" valign="top"></td>
<td valign="top">
<input name="read" type="checkbox" id="read" value="1">
<label for="read"><?php echo __('I have read and agree to the <a href="{url}" target="{target}">Terms of Service.</a>',array(
'{url}' => get_url('page/terms/'),
'{target}' => '_blank'
)) ?></label>
<?php echo $this->validation()->read_error; ?>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input name="submit" type="submit" value="<?php echo __('Create my account') ?>" />
<a href="<?php echo get_url('')?>"><?php echo __('Cancel')?></a>
</tr>
</table>
<br>
</form>