khanat-opennel-code/code/ryzom/tools/server/www/webtt/app/views/users/login.ctp
kerozcak 89fd0e92c0 Changed: #1315
--HG--
branch : gsoc2011-kerozcak
2011-08-21 02:54:22 +02:00

13 lines
No EOL
435 B
PHP

<div class="grid_6">
<p style="font-size: larger">Please login or <?php echo $this->Html->link(__('Register', true), array('admin' => false, 'controller' => 'users', 'action' => 'register')); ?>.</p>
<?php
echo $this->Session->flash('auth');
echo $this->Form->create('User', array('action' => 'login'));
echo $this->Form->inputs(array(
'legend' => __('Login', true),
'username',
'password'
));
echo $this->Form->end('Login');
?>
</div>