khanat-opennel-code/code/web/public_php/webtt/app/views/users/register.ctp

16 lines
No EOL
319 B
PHP

<div class="grid_6">
<?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');
?>
</div>