Esempio n. 1
0
<p>You don't appear to be a registered user yet. If you'd like to create a new account, we just need a few more details:</p>
<?php 
echo form::open('member/register');
?>

	<p>
		<label for="name">Display name:</label>
		<input type="text" name="name" id="name" value="<?php 
echo html::chars($data['name']);
?>
" /><br />
		<small>This is your name as it will be displayed throughout the site.</small>
	</p>
	<p>
		<label for="email">Email address:</label>
		<input type="email" name="email" id="email" value="<?php 
echo html::chars($data['email']);
?>
"<br />
		<small>Just in case we need to contact you.</small>
		
	</p>
	<p>
		<label for="recaptcha_response_field">Security code:</label>
		<?php 
echo Recaptcha::get_html();
?>
	</p>
	<p><input name="submit" type="submit" value="Register" /></p>
	<p><em>If you already have a registered account and just want to link this identity to it, please log in to your existing account, and then link this new identity via the account management section.</em></p>
</form>