36 lines
1.2 KiB
PHP
Executable File
36 lines
1.2 KiB
PHP
Executable File
<?php $this->titre = "INTER-SANTE - Ajouter Profil"; ?>
|
|
|
|
<form method="post" action="Ajouterprofil/ajouter">
|
|
<fieldset>
|
|
<legend> <?= _("Profil à ajouter") ?> </legend>
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" >Code</td>
|
|
<td width="30%" ><INPUT class="form-control" TYPE="text" id="codeProfil" NAME="codeProfil" required AUTOCOMPLETE="OFF" autofocus></td>
|
|
|
|
<td width="5%" > <?= _("Libellé") ?> </td>
|
|
<td><INPUT class="form-control" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Profil Système") ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="codeProfilSysteme" NAME="codeProfilSysteme" required AUTOCOMPLETE="OFF" >
|
|
<?php liste_options($profilsysteme,""); ?>
|
|
</SELECT>
|
|
</td>
|
|
<td></td>
|
|
<td><input class = "form-control btn btn-primary" type="submit" value="<?= _("Enregistrer") ?>" /></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</fieldset>
|
|
</form>
|
|
|
|
<?php if (isset($msgErreur)): ?>
|
|
<div class="alert alert-danger" style="height:38px; padding:5px;" >
|
|
<H4><?= $msgErreur ?></H4>
|
|
</div>
|
|
<?php endif; ?>
|