login.ctp
510 Bytes
<div class="index">
<h2><i class="icon-key"></i> Page de connexion</h2>
<p>Vous n'êtes pas connecté, veuillez vous authentifier.</p>
<?= $this->Flash->render('auth') ?>
<?= $this->Form->create() ?>
<fieldset>
<?= $this->Form->input('username') ?>
<?= $this->Form->input('password') ?>
</fieldset>
<?= $this->Form->button(__('Se Connecter')); ?>
<?= $this->Form->end() ?>
</div>
<div class="actions">
<?php echo $this->element('menu') ?>
</div>