Blame view

src/Template/GroupesMetiers/add.ctp 406 Bytes
64fba1a2   Alexandre   Base du projet : ...
1

6c4edfa3   Alexandre   First Commit LabI...
2
3
4
5
6
7
8
9
10
11
12
13
<div class="groupesMetiers form large-9 medium-8 columns content">
    <?= $this->Form->create($groupesMetier) ?>
    <fieldset>
        <legend><?= __('Add Groupes Metier') ?></legend>
        <?php
            echo $this->Form->input('nom');
            echo $this->Form->input('description');
        ?>
    </fieldset>
    <?= $this->Form->button(__('Submit')) ?>
    <?= $this->Form->end() ?>
</div>