Merge branch 'fixes' into main/rendor-staging
[ryzomcore.git] / web / public_php / webtt / app / views / users / login.ctp
blobd5b4bdbc3e562c480d37423012a03afd94514187
1 <div class="grid_6">
2 <p style="font-size: larger">Please login or <?php echo $this->Html->link(__('Register', true), array('admin' => false, 'controller' => 'users', 'action' => 'register')); ?>.</p>
3 <?php
4 echo $this->Session->flash('auth');
5 echo $this->Form->create('User', array('action' => 'login'));
6 echo $this->Form->inputs(array(
7 'legend' => __('Login', true),
8 'username',
9 'password'
10 ));
11 echo $this->Form->end('Login');
13 </div>