2011-08-21 00:54:22 +00:00
|
|
|
<div class="grid_6">
|
2011-07-20 10:21:20 +00:00
|
|
|
<?php
|
|
|
|
echo $this->Session->flash('email');
|
|
|
|
|
|
|
|
echo $this->Session->flash('auth');
|
|
|
|
echo $this->Form->create('User', array('action' => 'register'));
|
|
|
|
echo $this->Form->inputs(array(
|
|
|
|
'legend' => __('Register', true),
|
|
|
|
'username',
|
|
|
|
'name',
|
|
|
|
'email',
|
|
|
|
'passwd',
|
|
|
|
));
|
|
|
|
echo $this->Form->end('Register');
|
|
|
|
?>
|
2011-08-21 00:54:22 +00:00
|
|
|
</div>
|