mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 17:29:10 +00:00
16 lines
No EOL
319 B
PHP
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>
|