Blame view

src/Template/Users/login.ctp 510 Bytes
64fba1a2   Alexandre   Base du projet : ...
1
2
<div class="index">
	<h2><i class="icon-key"></i> Page de connexion</h2>
4260780b   Alexandre   Migration vue, co...
3
		<p>Vous n'ĂȘtes pas connectĂ©, veuillez vous authentifier.</p>
64fba1a2   Alexandre   Base du projet : ...
4
5
6
7
8
9
10
11
12
13
			<?= $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>
4260780b   Alexandre   Migration vue, co...
14
15
16
17

    	<div class="actions">
			<?php echo $this->element('menu') ?>
		</div>