login.ctp
561 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', ['label' => 'Login']) ?>
<?= $this->Form->input('password', ['label' => 'Mot de passe']) ?>
</fieldset>
<?= $this->Form->button(__('Se Connecter')); ?>
<?= $this->Form->end() ?>
</div>
<div class="actions">
<?php echo $this->element('menu') ?>
</div>