Merge branch 'fixes' into main/rendor-staging
[ryzomcore.git] / web / public_php / webtt / app / views / users / register.ctp
blob01477d18966d07644c7d8c79e63a797446230025
1 <div class="grid_6">
2 <?php
3 echo $this->Session->flash('email');
5 echo $this->Session->flash('auth');
6 echo $this->Form->create('User', array('action' => 'register'));
7 echo $this->Form->inputs(array(
8 'legend' => __('Register', true),
9 'username',
10 'name',
11 'email',
12 'passwd',
13 ));
14 echo $this->Form->end('Register');
16 </div>