Blame view

src/Template/Users/login.ctp 706 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
			<?= $this->Flash->render('auth') ?>
			<?= $this->Form->create() ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
6
			<?php if($configuration->use_ldap) { $label = 'Login (LDAP)'; } else { $label = 'Login'; }?>
64fba1a2   Alexandre   Base du projet : ...
7
			    <fieldset>
9fc6b8a2   Alexandre   Version: 2.4.2.6
8
			        <?= $this->Form->input('ldap', ['label' => $label, 'div' => 'input required']) ?>
e1f6c5b7   Alexandre   Version: 2.3.0.0
9
			        <?= $this->Form->input('password', ['label' => 'Mot de passe', 'div' => 'input required']) ?>
64fba1a2   Alexandre   Base du projet : ...
10
			    </fieldset>
e55ca961   Alexandre   Version: 2.4.2.8
11
			<?= $this->Form->submit(__('Se Connecter')); ?>
64fba1a2   Alexandre   Base du projet : ...
12
13
14
			<?= $this->Form->end() ?>
		
</div>
4260780b   Alexandre   Migration vue, co...
15
16
17
18

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